From 2b6172ef38eb9d84ff3a89f9871eabf84e7d11d9 Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Wed, 5 Feb 2025 19:01:07 +0000 Subject: [PATCH] Fix tests --- tests/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests.rs b/tests/tests.rs index ae413117..af236e0c 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -322,7 +322,7 @@ fn test_error() -> Result<()> { let return_string_error = globals.get::("return_string_error")?; assert!(return_string_error.call::(()).is_ok()); - match lua.load("if you're happy and you know it syntax error").exec() { + match lua.load("if you are happy and you know it syntax error").exec() { Err(Error::SyntaxError { incomplete_input: false, ..