From a5d413d17babd07ce482e03e633e265360c39c5d Mon Sep 17 00:00:00 2001 From: Andrzej Krzywda Date: Sun, 7 Jan 2024 16:58:32 +0100 Subject: [PATCH] Url test fix --- rails_application/test/integration/login_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rails_application/test/integration/login_test.rb b/rails_application/test/integration/login_test.rb index 96005ae00..21655f432 100644 --- a/rails_application/test/integration/login_test.rb +++ b/rails_application/test/integration/login_test.rb @@ -40,7 +40,7 @@ def test_cookies_set_to_not_existing_customer_should_log_out_and_redirect_to_log follow_redirect! refute cookies["client_id"].present? - assert_equal "/clients", response.original_url + assert_equal "/clients", path end private