aboutsummaryrefslogtreecommitdiff
path: root/test/nostr_service_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/nostr_service_test.cpp')
-rw-r--r--test/nostr_service_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nostr_service_test.cpp b/test/nostr_service_test.cpp
index 5867e8e..4e29960 100644
--- a/test/nostr_service_test.cpp
+++ b/test/nostr_service_test.cpp
@@ -773,8 +773,8 @@ TEST_F(NostrServiceTest, QueryRelays_ReturnsEvents_UpToEOSE)
auto filters = make_shared<nostr::Filters>(getKind0And1TestFilters());
auto results = nostrService->queryRelays(filters);
- // TODO: Check results size when the queryRelays method deduplicates results before returning.
- // ASSERT_EQ(results.size(), testEvents.size());
+ // Check results size to ensure there are no duplicates.
+ ASSERT_EQ(results.size(), testEvents.size());
// Check that the results contain the expected events.
for (auto resultEvent : results)