From 32c367090b6de7b45897e1b220ac2f63ff6a42c3 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 31 May 2024 23:13:27 +0100 Subject: [PATCH] Updated test names Signed-off-by: snipe --- tests/Feature/Users/ViewUserTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Feature/Users/ViewUserTest.php b/tests/Feature/Users/ViewUserTest.php index 2f15b26a6c..522eff8421 100644 --- a/tests/Feature/Users/ViewUserTest.php +++ b/tests/Feature/Users/ViewUserTest.php @@ -10,7 +10,7 @@ use App\Notifications\CurrentInventory; class ViewUserTest extends TestCase { - public function testUserWithoutPermissionsCannotViewUserDetailPage() + public function testUserWithoutCompanyPermissionsCannotViewUserDetailPage() { $this->settings->enableMultipleFullCompanySupport(); @@ -29,7 +29,7 @@ class ViewUserTest extends TestCase ->assertStatus(200); } - public function testUserWithoutPermissionsCannotViewPrintAllInventoryPage() + public function testUserWithoutCompanyPermissionsCannotViewPrintAllInventoryPage() { $this->settings->enableMultipleFullCompanySupport(); //$this->withoutExceptionHandling(); @@ -53,7 +53,7 @@ class ViewUserTest extends TestCase ->assertStatus(200); } - public function testUserWithoutPermissionsCannotSendInventory() + public function testUserWithoutCompanyPermissionsCannotSendInventory() { Notification::fake(); @@ -81,7 +81,7 @@ class ViewUserTest extends TestCase ); } - public function testUserWithoutPermissionsCannotDeleteUser() + public function testUserWithoutCompanyPermissionsCannotDeleteUser() { $this->settings->enableMultipleFullCompanySupport();