Refactor to use UserInformativeValidatorByMatrixUserNameFactory.
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-09-07 18:38:03 +03:00
parent 85bd79e59c
commit 5c40bc6bf3
6 changed files with 28 additions and 119 deletions
+2 -2
View File
@@ -303,7 +303,7 @@ class CartTest extends TestCase
$response->assertStatus(200);
$response->assertJson([
'error' => 'The username is empty, please, write username!!!'
'error' => 'The username is invalid, please, check that you are registered or signed in!!!'
]);
}
@@ -321,7 +321,7 @@ class CartTest extends TestCase
$response->assertStatus(200);
$response->assertJson([
'error' => 'The username is empty, please, write username!!!'
'error' => 'The username is invalid, please, check that you are registered or signed in!!!'
]);
}
}