From d5a6c413e75090f402095d5f523e8dcde76e3098 Mon Sep 17 00:00:00 2001 From: Kirill Leonov Date: Fri, 19 Jan 2024 14:18:05 +0300 Subject: [PATCH] fix test --- src/parser/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/mod.rs b/src/parser/mod.rs index 1df34dc..8f57e46 100644 --- a/src/parser/mod.rs +++ b/src/parser/mod.rs @@ -40,7 +40,7 @@ mod tests { Create("b".to_string(), Line("'hello world'".to_string())), Print("a".to_string()), Print("b".to_string()), - ErrorCode("no command".to_string()), + ErrorCode("Could not recognize the command".to_string()), ]; let mut i = 0;