Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit a99b5d0

Browse files
committed
Reverted check for messages count
1 parent 94722a7 commit a99b5d0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/StatisticsStoreTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ public function test_store_statistics_on_public_channel()
2525
$this->assertCount(2, $records = $this->statisticsStore->getRecords());
2626

2727
$this->assertEquals('2', $records[1]['peak_connections_count']);
28-
$this->assertEquals('0', $records[1]['websocket_messages_count']);
29-
$this->assertEquals('0', $records[1]['api_messages_count']);
3028

3129
$this->statisticsCollector->save();
3230

@@ -56,8 +54,6 @@ public function test_store_statistics_on_private_channel()
5654
$this->assertCount(2, $records = $this->statisticsStore->getRecords());
5755

5856
$this->assertEquals('2', $records[1]['peak_connections_count']);
59-
$this->assertEquals('0', $records[1]['websocket_messages_count']);
60-
$this->assertEquals('0', $records[1]['api_messages_count']);
6157

6258
$this->statisticsCollector->save();
6359

@@ -89,8 +85,6 @@ public function test_store_statistics_on_presence_channel()
8985
$this->assertCount(2, $records = $this->statisticsStore->getRecords());
9086

9187
$this->assertEquals('3', $records[1]['peak_connections_count']);
92-
$this->assertEquals('0', $records[1]['websocket_messages_count']);
93-
$this->assertEquals('0', $records[1]['api_messages_count']);
9488

9589
$this->statisticsCollector->save();
9690

0 commit comments

Comments
 (0)