@@ -32,6 +32,6 @@ |
||
32 | 32 | protected function schedule(Schedule $schedule) |
33 | 33 | { |
34 | 34 | $schedule->command('inspire') |
35 | - ->hourly(); |
|
35 | + ->hourly(); |
|
36 | 36 | } |
37 | 37 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | $user = $this->registerAndLoginTestingUser($userDetails); |
26 | 26 | |
27 | 27 | $data = [ |
28 | - // TODO: To Be Continue... |
|
28 | + // TODO: To Be Continue... |
|
29 | 29 | ]; |
30 | 30 | |
31 | 31 | // send the HTTP request |
@@ -37,10 +37,10 @@ |
||
37 | 37 | 'name' => $data['name'], |
38 | 38 | ], $response); |
39 | 39 | |
40 | - // assert response contain the token |
|
40 | + // assert response contain the token |
|
41 | 41 | $this->assertResponseContainKeys(['id', 'token'], $response); |
42 | 42 | |
43 | - // assert the data is stored in the database |
|
43 | + // assert the data is stored in the database |
|
44 | 44 | $this->seeInDatabase('users', ['email' => $data['email']]); |
45 | 45 | } |
46 | 46 |
@@ -37,10 +37,10 @@ |
||
37 | 37 | 'name' => $data['name'], |
38 | 38 | ], $response); |
39 | 39 | |
40 | - // assert response contain the token |
|
40 | + // assert response contain the token |
|
41 | 41 | $this->assertResponseContainKeys(['id', 'token'], $response); |
42 | 42 | |
43 | - // assert the data is stored in the database |
|
43 | + // assert the data is stored in the database |
|
44 | 44 | $this->seeInDatabase('users', ['email' => $data['email']]); |
45 | 45 | } |
46 | 46 |