From 81acde013e6b39410e3339ecce892ffcc18e02eb Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 21:27:16 -0500 Subject: [PATCH] fix: update expected hex value for protocol signature test --- tests/TestHarness.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestHarness.cpp b/tests/TestHarness.cpp index 399f748..7da87df 100644 --- a/tests/TestHarness.cpp +++ b/tests/TestHarness.cpp @@ -36,7 +36,8 @@ int main(){ std::string b64 = b64Of(sig); std::cout << "[TEST] Protocol signature hex=" << hex << " base64=" << b64 << "\n"; // Expected values based on current repository state/logs - const std::string expectedHex = "2977ddf4352e7264b6a45767087b45ba"; + // Updated 2025-11-08 after entity enhancement changes + const std::string expectedHex = "eb1600e798dc5e03c755a968dc16b7fc"; if (hex != expectedHex) { std::cerr << "[FAIL] Signature hex mismatch: got " << hex << " expected " << expectedHex << "\n"; ++failures;