eris/lua: apply clippy lints

This commit is contained in:
raf 2025-05-02 06:01:17 +03:00
commit 3651624861
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -179,12 +179,12 @@ mod tests {
#[test]
fn test_expand_response_runtime_error() {
let lua_code = r#"
let lua_code = r"
function enhance_response(text, response_type, path, token)
-- This will cause a runtime error
return nonexistent_variable
end
"#;
";
let script_manager = ScriptManager::with_content(lua_code);
let result =