diff --git a/tests/Unit/Commands/Server/BulkPowerActionCommandTest.php b/tests/Unit/Commands/Server/BulkPowerActionCommandTest.php index 684baf931..a1c3bfaf2 100644 --- a/tests/Unit/Commands/Server/BulkPowerActionCommandTest.php +++ b/tests/Unit/Commands/Server/BulkPowerActionCommandTest.php @@ -124,7 +124,7 @@ class BulkPowerActionCommandTest extends CommandTestCase } /** - * Test that validation occurrs correctly. + * Test that validation occurs correctly. * * @param array $data * diff --git a/tests/Unit/Http/Controllers/Server/Files/RemoteRequestControllerTest.php b/tests/Unit/Http/Controllers/Server/Files/RemoteRequestControllerTest.php index 6291a748a..486e38f38 100644 --- a/tests/Unit/Http/Controllers/Server/Files/RemoteRequestControllerTest.php +++ b/tests/Unit/Http/Controllers/Server/Files/RemoteRequestControllerTest.php @@ -79,7 +79,7 @@ class RemoteRequestControllerTest extends ControllerTestCase } /** - * Test that the controller properly handles an exception thrown by the daemon conneciton. + * Test that the controller properly handles an exception thrown by the daemon connection. */ public function testExceptionThrownByDaemonConnectionIsHandledByDisplayController() { @@ -125,7 +125,7 @@ class RemoteRequestControllerTest extends ControllerTestCase } /** - * Test that the controller properly handles an exception thrown by the daemon conneciton. + * Test that the controller properly handles an exception thrown by the daemon connection. */ public function testExceptionThrownByDaemonConnectionIsHandledByStoreController() { diff --git a/tests/Unit/Http/Middleware/API/AuthenticateIPAccessTest.php b/tests/Unit/Http/Middleware/API/AuthenticateIPAccessTest.php index babd95358..967fae0a3 100644 --- a/tests/Unit/Http/Middleware/API/AuthenticateIPAccessTest.php +++ b/tests/Unit/Http/Middleware/API/AuthenticateIPAccessTest.php @@ -36,7 +36,7 @@ class AuthenticateIPAccessTest extends MiddlewareTestCase /** * Test that a CIDR range can be used. */ - public function testValidIPAganistCIDRRange() + public function testValidIPAgainstCIDRRange() { $model = factory(ApiKey::class)->make(['allowed_ips' => '["192.168.1.1/28"]']); $this->setRequestAttribute('api_key', $model); diff --git a/tests/Unit/Http/Middleware/API/AuthenticateKeyTest.php b/tests/Unit/Http/Middleware/API/AuthenticateKeyTest.php index 354838b3f..075124e2b 100644 --- a/tests/Unit/Http/Middleware/API/AuthenticateKeyTest.php +++ b/tests/Unit/Http/Middleware/API/AuthenticateKeyTest.php @@ -59,7 +59,7 @@ class AuthenticateKeyTest extends MiddlewareTestCase } /** - * Test that an invalid API identifer throws an exception. + * Test that an invalid API identifier throws an exception. * * @expectedException \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException */ diff --git a/tests/Unit/Jobs/Schedule/RunTaskJobTest.php b/tests/Unit/Jobs/Schedule/RunTaskJobTest.php index a398f969f..1c6ce81bf 100644 --- a/tests/Unit/Jobs/Schedule/RunTaskJobTest.php +++ b/tests/Unit/Jobs/Schedule/RunTaskJobTest.php @@ -103,7 +103,7 @@ class RunTaskJobTest extends TestCase } /** - * Test commmand action passed to job. + * Test command action passed to job. */ public function testCommandAction() { diff --git a/tests/Unit/Services/Allocations/AssignmentServiceTest.php b/tests/Unit/Services/Allocations/AssignmentServiceTest.php index ce9d84c7f..96a8b2d28 100644 --- a/tests/Unit/Services/Allocations/AssignmentServiceTest.php +++ b/tests/Unit/Services/Allocations/AssignmentServiceTest.php @@ -103,7 +103,7 @@ class AssignmentServiceTest extends TestCase } /** - * Test a non-CIRD IP address with a single port and an alias. + * Test a non-CIDR IP address with a single port and an alias. */ public function testIndividualIPAddressWithAlias() { diff --git a/tests/Unit/Services/Helpers/SoftwareVersionServiceTest.php b/tests/Unit/Services/Helpers/SoftwareVersionServiceTest.php index 57a036599..5eb0cd6fa 100644 --- a/tests/Unit/Services/Helpers/SoftwareVersionServiceTest.php +++ b/tests/Unit/Services/Helpers/SoftwareVersionServiceTest.php @@ -153,7 +153,7 @@ class SoftwareVersionServiceTest extends TestCase } /** - * Provide data for testing booklean response for daemon version. + * Provide data for testing boolean response for daemon version. * * @return array */ diff --git a/tests/Unit/Services/Schedules/Tasks/TaskCreationServiceTest.php b/tests/Unit/Services/Schedules/Tasks/TaskCreationServiceTest.php index 9993e4491..8867b1805 100644 --- a/tests/Unit/Services/Schedules/Tasks/TaskCreationServiceTest.php +++ b/tests/Unit/Services/Schedules/Tasks/TaskCreationServiceTest.php @@ -149,7 +149,7 @@ class TaskCreationServiceTest extends TestCase } /** - * Test that exceptions are thrown if the Scheudle module or ID is invalid. + * Test that exceptions are thrown if the Schedule module or ID is invalid. * * @dataProvider invalidScheduleArgumentProvider * @expectedException \InvalidArgumentException diff --git a/tests/Unit/Services/Servers/EnvironmentServiceTest.php b/tests/Unit/Services/Servers/EnvironmentServiceTest.php index 435eb9bfb..0f7000209 100644 --- a/tests/Unit/Services/Servers/EnvironmentServiceTest.php +++ b/tests/Unit/Services/Servers/EnvironmentServiceTest.php @@ -36,7 +36,7 @@ class EnvironmentServiceTest extends TestCase } /** - * Test that set environment key stores the key into a retreviable array. + * Test that set environment key stores the key into a retrievable array. */ public function testSettingEnvironmentKeyPersistsItInArray() { @@ -92,7 +92,7 @@ class EnvironmentServiceTest extends TestCase /** * Test that duplicate variables provided in config override the defaults. */ - public function testProcessShouldAllowOverwritingVaraiblesWithConfigurationFile() + public function testProcessShouldAllowOverwritingVariablesWithConfigurationFile() { $model = $this->getServerModel(); $this->repository->shouldReceive('getVariablesWithValues')->with($model->id)->once()->andReturn([]);