Ensure test case outputs are strings

This commit is contained in:
akp 2023-12-11 00:05:13 +00:00
parent 0c47869abd
commit 53a6bc4bad
No known key found for this signature in database
GPG key ID: CF8D58F3DEB20755

2
aoc
View file

@ -275,7 +275,7 @@ class CLI(object):
existing_tests[sp].append(
{
"is": output,
"is": str(output),
"input": sys.stdin.read(),
}
)