From 816b9844c940cd355c2597b792f3559786b7c7b5 Mon Sep 17 00:00:00 2001 From: Lars Henrik Mai Date: Sun, 27 Sep 2015 13:53:07 +0200 Subject: [PATCH] Fix return path in authentication integration test --- test/integration/authentication_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/authentication_test.rb b/test/integration/authentication_test.rb index 50ada1f..e208374 100644 --- a/test/integration/authentication_test.rb +++ b/test/integration/authentication_test.rb @@ -6,11 +6,11 @@ class AuthenticationTest < ActionDispatch::IntegrationTest fill_in 'Name', with: 'me' fill_in 'Email', with: 'user@example.com' click_button 'Sign In' - assert_equal '/', current_path + assert_equal '/leipzig', current_path assert_is_signed_in click_link 'Abmelden' - assert_equal '/', current_path + assert_equal '/leipzig', current_path assert_is_signed_out end