Skip to content

Commit

Permalink
Fix Laravel compatibility method
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Feb 9, 2022
1 parent 9361059 commit 29d4b84
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/Feature/WindowsAuthMiddlewareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ public function test_request_continues_if_user_is_not_set_in_the_server_params()
$this->assertTrue(true);
});

Event::assertNothingDispatched();
Event::assertNotDispatched(Importing::class);
Event::assertNotDispatched(Imported::class);
Event::assertNotDispatched(Synchronizing::class);
Event::assertNotDispatched(Synchronized::class);
Event::assertNotDispatched(CompletedWithWindows::class);
}

public function test_request_continues_if_user_is_already_logged_in()
Expand Down

0 comments on commit 29d4b84

Please sign in to comment.