From 49dcd9bb4ae137e51b11fbbfea0b9542a752fe3c Mon Sep 17 00:00:00 2001 From: Skgland Date: Thu, 11 Mar 2021 16:16:31 +0100 Subject: [PATCH] address problems brought up in review --- tests-pl/syntax_error.pl | 4 ++-- tests/scryer/helper.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests-pl/syntax_error.pl b/tests-pl/syntax_error.pl index fbdb2b1d..9a1751f4 100644 --- a/tests-pl/syntax_error.pl +++ b/tests-pl/syntax_error.pl @@ -1,6 +1,6 @@ :- use_module(library(debug)). :- use_module(library(format)). -missing_dot :- write('Not "." at the end of the line'), nl +missing_dot :- write('No "." at the end of the line'), nl -:- initialize(missing_dot). \ No newline at end of file +:- initialization(missing_dot). diff --git a/tests/scryer/helper.rs b/tests/scryer/helper.rs index 2c3e0623..5bd498dc 100644 --- a/tests/scryer/helper.rs +++ b/tests/scryer/helper.rs @@ -60,7 +60,7 @@ pub fn run_top_level_test_no_args< run_top_level_test_with_args::<&[&str], _, _, _, _>(&[], stdin, expected_stdout) } -/// Test whether scryr-prolog +/// Test whether scryer-prolog /// produces the expected output when called with the supplied /// arguments and fed the supplied input pub fn run_top_level_test_with_args< -- 2.54.0