Commit 7fa67cbb7db66ca5b6ad0a9013ac702ea2a25698
1 parent
67c6ec49
Exists in
master
and in
29 other branches
Fixes test so it meets the new logic for download xml users lis
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
test/functional/users_controller_test.rb
... | ... | @@ -33,7 +33,7 @@ class UsersControllerTest < ActionController::TestCase |
33 | 33 | login_as('admin_user') |
34 | 34 | |
35 | 35 | get :index, :format => 'xml' |
36 | - assert_equal 'application/xml', @response.content_type | |
36 | + assert_equal 'text/xml', @response.content_type | |
37 | 37 | end |
38 | 38 | |
39 | 39 | should 'response as CSV to export users' do | ... | ... |