From f8d2b9e1a745bdc4472e48eb852f3bbce7cfab26 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 9 Jul 2022 00:43:09 -0500 Subject: [PATCH] [ox/mc] Remove debug line from test --- deps/ox/src/ox/mc/test/tests.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/deps/ox/src/ox/mc/test/tests.cpp b/deps/ox/src/ox/mc/test/tests.cpp index 60c27ed6..7e109c33 100644 --- a/deps/ox/src/ox/mc/test/tests.cpp +++ b/deps/ox/src/ox/mc/test/tests.cpp @@ -327,7 +327,6 @@ std::map tests = { oxAssert(testOutStruct.typeName() == TestStructNest::TypeName, "ModelObject TypeName failed"); oxAssert(testOutStruct.typeVersion() == TestStructNest::TypeVersion, "ModelObject TypeVersion failed"); oxAssert(testOutStruct["Bool"].get() == testIn.Struct.Bool, "testOut.Struct.Bool failed"); - oxDebugf("{}", testOutStruct["BString"].get()); oxAssert(testOutStruct["BString"].get() == testIn.Struct.BString.c_str(), "testOut.Struct.BString failed"); oxAssert(testOut["unionIdx"].get() == testIn.unionIdx, "testOut.unionIdx failed"); oxAssert(testOutUnion.unionIdx() == testIn.unionIdx, "testOut.Union idx wrong");