From 0e59969b6248138ebcf5aa6c2ec4e02f834fb17e Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 18 May 2026 12:13:43 -0700 Subject: [PATCH] tests: silence spammy debug prints in NdbTests Co-Authored-By: Claude Opus 4.6 --- nostrdb/Test/NdbTests.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nostrdb/Test/NdbTests.swift b/nostrdb/Test/NdbTests.swift index 41a6075f..26b0486e 100644 --- a/nostrdb/Test/NdbTests.swift +++ b/nostrdb/Test/NdbTests.swift @@ -176,7 +176,7 @@ final class NdbTests: XCTestCase { } for elem in tag { - print("tag[\(tags)][\(elem.index)]") + //print("tag[\(tags)][\(elem.index)]") total_count_iter += 1 } @@ -294,7 +294,7 @@ final class NdbTests: XCTestCase { for tag in note.tags { for elem in tag { - print("iter_elem \(elem.string())") + //print("iter_elem \(elem.string())") for c in elem { if char_count == 0 { let ac = AsciiCharacter(c)