mirror of https://github.com/rails/rails
Fix digest ETAG test.
After
12528d4567
ETag will include a `W/` before the digest.
This commit is contained in:
parent
82f6061fbe
commit
a7060a6e21
|
@ -188,7 +188,7 @@ module ApplicationTests
|
|||
end
|
||||
end
|
||||
|
||||
etag = "5af83e3196bf99f440f31f2e1a6c9afe".inspect
|
||||
etag = "W/" + ("5af83e3196bf99f440f31f2e1a6c9afe".inspect)
|
||||
|
||||
get "/"
|
||||
assert_equal 200, last_response.status
|
||||
|
|
Loading…
Reference in New Issue