From b55a76eeb6e769001a52a2f50a00edd442d6a4f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=B7=E6=BA=AA?= Date: Tue, 21 Apr 2020 10:09:36 +0800 Subject: [PATCH] Update ContextTest.php --- src/websocket-server/tests/ContextTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/websocket-server/tests/ContextTest.php b/src/websocket-server/tests/ContextTest.php index 4352f8ba9..71a4bb927 100644 --- a/src/websocket-server/tests/ContextTest.php +++ b/src/websocket-server/tests/ContextTest.php @@ -60,7 +60,6 @@ class ContextTest extends \PHPUnit\Framework\TestCase { Context::set('override.id', 1); $this->assertSame(2, Context::override('override.id', function ($id) { - var_dump($id); return $id + 1; }));