You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: http-tests.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -258,13 +258,13 @@ class ExampleTest extends TestCase
258
258
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:
259
259
260
260
```php
261
-
$this->actingAs($user, 'web')
261
+
$this->actingAs($user, 'web');
262
262
```
263
263
264
264
If you would like to ensure the request is unauthenticated, you may use the `actingAsGuest` method:
0 commit comments