From f5e7573bd6078b56a7533f198a8a666c28fa6608 Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 3 Jul 2023 12:09:26 -0600 Subject: [PATCH] correct tests #171 and #300 --- tests-pl/iso-conformity-tests.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests-pl/iso-conformity-tests.pl b/tests-pl/iso-conformity-tests.pl index 40242fca..630b2baa 100644 --- a/tests-pl/iso-conformity-tests.pl +++ b/tests-pl/iso-conformity-tests.pl @@ -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), -- 2.54.0