From 54fda11cb42aef7fa9546d718bb911f6bb1f03fd Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Sun, 28 Jun 2020 16:05:29 +0800 Subject: [PATCH] fix tests --- tests/ServicesTest/HookTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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()