correct tests #171 and #300

This commit is contained in:
Mark
2023-07-03 12:09:26 -06:00
parent 9cdad087ef
commit f5e7573bd6

View File

@@ -753,12 +753,12 @@ test_194 :- op(0,xfy,.),
test_170 :- set_prolog_flag(double_quotes,chars).
test_171 :- writeq_term_to_chars("a", C),
C == "\"a\"".
C == "[a]".
test_229 :- test_syntax_error("\"\\z.\"", syntax_error(missing_quote)).
test_300 :- writeq_term_to_chars("\0\", C),
C == "\"\\x0\\\"".
C == "['\\x0\\']".
test_172 :- X is 10.0** -323,
writeq_term_to_chars(X, C),