diff --git a/tests/Feature/Associates/Auth/LoginTest.php b/tests/Feature/Associates/Auth/LoginTest.php index 2367636..61c35ff 100644 --- a/tests/Feature/Associates/Auth/LoginTest.php +++ b/tests/Feature/Associates/Auth/LoginTest.php @@ -33,7 +33,7 @@ class LoginTest extends TestCase } /** @test */ - public function a_associate_can_login() + public function an_associate_can_login() { $associate = $this->factoryWithoutObservers(Associate::class)->create(['password' => Hash::make('password')]); diff --git a/tests/Feature/Associates/Auth/Passwords/EmailTest.php b/tests/Feature/Associates/Auth/Passwords/EmailTest.php index 0a5af6b..790258c 100644 --- a/tests/Feature/Associates/Auth/Passwords/EmailTest.php +++ b/tests/Feature/Associates/Auth/Passwords/EmailTest.php @@ -20,7 +20,7 @@ class EmailTest extends TestCase } /** @test */ - public function a_associate_must_enter_an_email_address() + public function an_associate_must_enter_an_email_address() { Livewire::test('associates.auth.passwords.email') ->call('sendResetPasswordLink') @@ -28,7 +28,7 @@ class EmailTest extends TestCase } /** @test */ - public function a_associate_must_enter_a_valid_email_address() + public function an_associate_must_enter_a_valid_email_address() { Livewire::test('associates.auth.passwords.email') ->set('email', 'email') @@ -37,7 +37,7 @@ class EmailTest extends TestCase } /** @test */ - public function a_associate_who_enters_a_valid_email_address_will_get_sent_an_email() + public function an_associate_who_enters_a_valid_email_address_will_get_sent_an_email() { $associate = factory(Associate::class)->create(); diff --git a/tests/Feature/Associates/Auth/Register/IndividualTest.php b/tests/Feature/Associates/Auth/Register/IndividualTest.php index 6b8b117..48df411 100644 --- a/tests/Feature/Associates/Auth/Register/IndividualTest.php +++ b/tests/Feature/Associates/Auth/Register/IndividualTest.php @@ -36,7 +36,7 @@ class IndividualTest extends TestCase } /** @test */ - function a_associate_can_register() + function an_associate_can_register() { Mail::fake();