From 61da7236f4c5f7405b770b8edbc3b66f8a6f8fa3 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 14 Mar 2018 14:48:10 +0200 Subject: [PATCH] make all tests green again --- tests/test_object_serialization.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_object_serialization.nim b/tests/test_object_serialization.nim index 35922bc..aed34c2 100644 --- a/tests/test_object_serialization.nim +++ b/tests/test_object_serialization.nim @@ -41,7 +41,7 @@ test "encoding and decoding an object": var t2 = bytes.decode(Transaction) check: - bytes.hexRepr == "85416c69636583426f628203e8" # verifies that Alice comes first + bytes.hexRepr == "cd85416c69636583426f628203e8" # verifies that Alice comes first t2.time == default(DateTime) t2.sender == "Alice" t2.receiver == "Bob"