diff --git a/tests/ServicesTest/HookTest.php b/tests/ServicesTest/HookTest.php index 8d69a215..3a8d64fd 100644 --- a/tests/ServicesTest/HookTest.php +++ b/tests/ServicesTest/HookTest.php @@ -48,26 +48,26 @@ class HookTest extends TestCase { Hook::addStyleFileToPage('/style/all'); $this->get('/') - ->assertSee('', false); + ->assertSee('', false); Hook::addStyleFileToPage('/style/pattern', ['skinlib']); $this->get('/') ->assertDontSee(''); $this->get('/skinlib') - ->assertSee('', false); + ->assertSee('', false); } public function testAddScriptFileToPage() { Hook::addScriptFileToPage('/script/all'); $this->get('/') - ->assertSee('', false); + ->assertSee('', false); Hook::addScriptFileToPage('/script/pattern', ['skinlib']); $this->get('/') - ->assertDontSee(''); + ->assertDontSee(''); $this->get('/skinlib') - ->assertSee('', false); + ->assertSee('', false); } public function testAddUserBadge()