Skip to content

Commit 6d7462a

Browse files
committed
Remove unneeded debug.
1 parent 181ab57 commit 6d7462a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: tests/tests.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,6 @@ fn test_error() {
306306
r#"
307307
function rust_panic()
308308
ok, err = pcall(function () rust_panic_function() end)
309-
print(tostring(ok), tostring(err))
310309
return 17
311310
end
312311
"#,
@@ -319,7 +318,7 @@ fn test_error() {
319318

320319
let rust_panic = globals.get::<_, Function>("rust_panic")?;
321320

322-
dbg!(rust_panic.call::<_, usize>(()))
321+
rust_panic.call::<_, usize>(())
323322
})
324323
}) {
325324
Ok(Ok(_)) => panic!("no panic was detected, pcall caught it!"),

0 commit comments

Comments
 (0)