Add #remoteterm as default channel

This commit is contained in:
Jack Kingsman
2026-03-04 10:56:31 -08:00
parent e0fb093612
commit 1ce72ecdf7
4 changed files with 141 additions and 25 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ class TestStatisticsEmpty:
assert result["contact_count"] == 0
assert result["repeater_count"] == 0
assert result["channel_count"] == 0
assert result["channel_count"] == 1 # #remoteterm seed from migration 33
assert result["total_packets"] == 0
assert result["decrypted_packets"] == 0
assert result["undecrypted_packets"] == 0
@@ -67,7 +67,7 @@ class TestStatisticsCounts:
await conn.commit()
result = await StatisticsRepository.get_all()
assert result["channel_count"] == 1
assert result["channel_count"] == 2 # test-chan + #remoteterm seed
@pytest.mark.asyncio
async def test_message_type_counts(self, test_db):