From a211eab2c6e49c66d18f660050e8301e7d78c0ab Mon Sep 17 00:00:00 2001 From: Vindaar Date: Thu, 11 Oct 2018 14:20:09 +0200 Subject: [PATCH] whitespace removal to get rid of 'number of spaces around...' Since whitespace wasn't aligning all `==` anyways, removal seems fine. --- test/tserialization.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/tserialization.nim b/test/tserialization.nim index cdbf9f3..05b7433 100644 --- a/test/tserialization.nim +++ b/test/tserialization.nim @@ -400,7 +400,7 @@ suite "Serialization": var result: Person load(input, result) assert result.firstnamechar == 'P' - assert result.surname == "Pan" + assert result.surname == "Pan" assert result.age == 12 test "Dump custom object": @@ -447,8 +447,8 @@ suite "Serialization": var result: Person load(input, result) assert result.firstnamechar == 'P' - assert result.surname == "Pan" - assert result.age == 12 + assert result.surname == "Pan" + assert result.age == 12 test "Dump custom object with explicit root tag": let input = Person(firstnamechar: 'P', surname: "Pan", age: 12)