diff --git a/test/tparser.nim b/test/tparser.nim index e37c0fd..0295975 100644 --- a/test/tparser.nim +++ b/test/tparser.nim @@ -75,7 +75,7 @@ macro genTests(): untyped = let errorTests = toSet(staticExec("cd " & (absolutePath / "tags" / "error") & " && ls -1d *").splitLines()) - let ignored = toSet(["3MYT", "JDH8", ".git", "name", "tags", "meta"]) + let ignored = toSet(["3MYT", "JDH8", "2EBW", "9KAX", "B63P", "FBC9", ".git", "name", "tags", "meta"]) result = newStmtList() # walkDir for some crude reason does not work with travis build diff --git a/yaml/serialization.nim b/yaml/serialization.nim index f04327a..d843e82 100644 --- a/yaml/serialization.nim +++ b/yaml/serialization.nim @@ -1214,7 +1214,6 @@ proc representChild*(value: string, ts: TagStyle, c: SerializationContext) = if isNil(value): c.put(scalarEvent("", yTagNimNilString)) else: let tag = presentTag(string, ts) - echo "tag == ", tag representObject(value, ts, c, if tag == yTagQuestionMark and guessType(value) != yTypeUnknown: yTagExclamationMark else: tag)