Skip to content

Commit 57ded95

Browse files
Missing semi-colon (#10682)
1 parent a3d14a3 commit 57ded95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

http-tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,13 +258,13 @@ class ExampleTest extends TestCase
258258
You may also specify which guard should be used to authenticate the given user by passing the guard name as the second argument to the `actingAs` method. The guard that is provided to the `actingAs` method will also become the default guard for the duration of the test:
259259

260260
```php
261-
$this->actingAs($user, 'web')
261+
$this->actingAs($user, 'web');
262262
```
263263

264264
If you would like to ensure the request is unauthenticated, you may use the `actingAsGuest` method:
265265

266266
```php
267-
$this->actingAsGuest()
267+
$this->actingAsGuest();
268268
```
269269

270270
<a name="debugging-responses"></a>

0 commit comments

Comments
 (0)