X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/cb87f02642d0097ebc067ca1f9371dde274a41e3..73214da35de30b3466cf8d0ab751955ec9292ec4:/test/controllers/swf_controller_test.rb diff --git a/test/controllers/swf_controller_test.rb b/test/controllers/swf_controller_test.rb index 6848f9a65..2b8a19beb 100644 --- a/test/controllers/swf_controller_test.rb +++ b/test/controllers/swf_controller_test.rb @@ -26,19 +26,19 @@ class SwfControllerTest < ActionController::TestCase get :trackpoints, :params => { :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1 } assert_response :success assert_equal "application/x-shockwave-flash", response.content_type - assert_match /^FWS/, response.body + assert_match(/^FWS/, response.body) assert_equal 80, response.body.length get :trackpoints, :params => { :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1, :token => other_user.tokens.create.token } assert_response :success assert_equal "application/x-shockwave-flash", response.content_type - assert_match /^FWS/, response.body + assert_match(/^FWS/, response.body) assert_equal 67, response.body.length get :trackpoints, :params => { :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1, :token => user.tokens.create.token } assert_response :success assert_equal "application/x-shockwave-flash", response.content_type - assert_match /^FWS/, response.body + assert_match(/^FWS/, response.body) assert_equal 74, response.body.length end end