From 809f967fb1abff948c373cd456c722f99213a1fe Mon Sep 17 00:00:00 2001 From: Konstantin Grachev Date: Wed, 10 Mar 2021 23:33:09 +0300 Subject: [PATCH] remove NsqTest.php --- tests/NsqTest.php | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 tests/NsqTest.php diff --git a/tests/NsqTest.php b/tests/NsqTest.php deleted file mode 100644 index 0bded8e..0000000 --- a/tests/NsqTest.php +++ /dev/null @@ -1,39 +0,0 @@ -> - */ - public function configs(): Generator - { - yield 'default' => [ - new ClientConfig( - heartbeatInterval: 3000, - snappy: false, - readTimeout: 1, - ), - ]; - - yield 'snappy' => [ - new ClientConfig( - heartbeatInterval: 3000, - snappy: true, - readTimeout: 1, - ), - ]; - } -}