From 68f124803fa18d1c9c3cbbac0df2c6d36faf4240 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20K=C3=A4ll=C3=A9n?= Date: Mon, 19 Aug 2024 16:02:09 +0200 Subject: [PATCH] Maintenance: unnecessary output during unit tests. --- src/UnitTests/Core/Collections/ByteTrieTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/UnitTests/Core/Collections/ByteTrieTests.cs b/src/UnitTests/Core/Collections/ByteTrieTests.cs index 3cd5dee02f..85b237d301 100644 --- a/src/UnitTests/Core/Collections/ByteTrieTests.cs +++ b/src/UnitTests/Core/Collections/ByteTrieTests.cs @@ -113,7 +113,6 @@ public void ByteTrie_Match_Mask() { var trie = new ByteTrie(); trie.Add(B("0404"), B("C4F4"), "masked"); - trie.Dump(); var m = trie.Match(B("0404")); Assert.IsTrue(m.Success);