From a99b5d00043af7ae50f2bf95152bfa81bddf3d3c Mon Sep 17 00:00:00 2001 From: Alex Renoki Date: Mon, 7 Dec 2020 23:35:18 +0200 Subject: [PATCH] Reverted check for messages count --- tests/StatisticsStoreTest.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/StatisticsStoreTest.php b/tests/StatisticsStoreTest.php index b0b22be..419341b 100644 --- a/tests/StatisticsStoreTest.php +++ b/tests/StatisticsStoreTest.php @@ -25,8 +25,6 @@ class StatisticsStoreTest extends TestCase $this->assertCount(2, $records = $this->statisticsStore->getRecords()); $this->assertEquals('2', $records[1]['peak_connections_count']); - $this->assertEquals('0', $records[1]['websocket_messages_count']); - $this->assertEquals('0', $records[1]['api_messages_count']); $this->statisticsCollector->save(); @@ -56,8 +54,6 @@ class StatisticsStoreTest extends TestCase $this->assertCount(2, $records = $this->statisticsStore->getRecords()); $this->assertEquals('2', $records[1]['peak_connections_count']); - $this->assertEquals('0', $records[1]['websocket_messages_count']); - $this->assertEquals('0', $records[1]['api_messages_count']); $this->statisticsCollector->save(); @@ -89,8 +85,6 @@ class StatisticsStoreTest extends TestCase $this->assertCount(2, $records = $this->statisticsStore->getRecords()); $this->assertEquals('3', $records[1]['peak_connections_count']); - $this->assertEquals('0', $records[1]['websocket_messages_count']); - $this->assertEquals('0', $records[1]['api_messages_count']); $this->statisticsCollector->save();