From 399eab4cad71d5bdb3c278da16e9d328beafe30d Mon Sep 17 00:00:00 2001 From: KKlochko Date: Sun, 18 Jun 2023 18:45:57 +0300 Subject: [PATCH] Refactor the name for the test to select another city in CartTest. --- tests/Feature/CartTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/CartTest.php b/tests/Feature/CartTest.php index 24263e1..c624bf8 100644 --- a/tests/Feature/CartTest.php +++ b/tests/Feature/CartTest.php @@ -56,7 +56,7 @@ class CartTest extends TestCase ]); } - public function test_select_another_city_time(): void + public function test_select_another_city(): void { $this->test_user = User::where('username', $this->test_user_username)->first(); $this->test_city = City::where('name', $this->test_city_name2)->first();