]> git.openstreetmap.org Git - rails.git/commitdiff
Fix tests to copy with new style mail objects
authorTom Hughes <tom@compton.nu>
Tue, 7 Dec 2010 21:53:50 +0000 (21:53 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 14 Nov 2011 09:42:47 +0000 (09:42 +0000)
test/integration/user_creation_test.rb

index 79772d4447aa28ddf6131a8a7939b9e48036411c..fd00f4d7114902d7d9d9af22d7383ee9e83142f5 100644 (file)
@@ -114,7 +114,7 @@ class UserCreationTest < ActionController::IntegrationTest
     # Check that the confirm account url is correct
     confirm_regex = Regexp.new("/user/redirect_tester/confirm\\?confirm_string=([a-zA-Z0-9]*)")
     assert_match(confirm_regex, register_email.body)
     # Check that the confirm account url is correct
     confirm_regex = Regexp.new("/user/redirect_tester/confirm\\?confirm_string=([a-zA-Z0-9]*)")
     assert_match(confirm_regex, register_email.body)
-    confirm_string = confirm_regex.match(register_email.body)[1]
+    confirm_string = register_email.body.match(confirm_regex)[1]
 
     # Check the page
     assert_response :success
 
     # Check the page
     assert_response :success