Skip to content

Commit f3eaddb

Browse files
authored
Merge pull request rails#38422 from vipulnsward/fix-wrong-spec
Fix wrong spec asserting headers maintain original definition
2 parents 534fc4f + 99108ff commit f3eaddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actionpack/test/dispatch/ssl_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def test_no_cookies
222222
end
223223

224224
def test_keeps_original_headers_behavior
225-
get headers: { "Connection" => %w[close] }
225+
get headers: { "Connection" => "close" }
226226
assert_equal "close", response.headers["Connection"]
227227
end
228228
end

0 commit comments

Comments
 (0)