diff options
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/static_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/static_test.rb b/actionpack/test/dispatch/static_test.rb index 9164cbd3aa..288a2084f6 100644 --- a/actionpack/test/dispatch/static_test.rb +++ b/actionpack/test/dispatch/static_test.rb @@ -149,7 +149,8 @@ module StaticTests response = get(file_name, 'HTTP_ACCEPT_ENCODING' => 'gzip', 'HTTP_IF_MODIFIED_SINCE' => last_modified.httpdate) assert_equal 304, response.status assert_equal nil, response.headers['Content-Type'] - assert_equal 'gzip', response.headers['Content-Encoding'] + assert_equal nil, response.headers['Content-Encoding'] + assert_equal nil, response.headers['Vary'] end # Windows doesn't allow \ / : * ? " < > | in filenames |