From 397deb4e29775b7395a7ed4ccd253b89ee211b66 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 27 Feb 2020 16:27:24 -0800 Subject: Fix typo in assert!() invocation (#4167) --- core/isolate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/isolate.rs b/core/isolate.rs index 08141c603..cbbbe79a1 100644 --- a/core/isolate.rs +++ b/core/isolate.rs @@ -941,7 +941,7 @@ pub mod tests { // terminate execution let ok = v8_isolate_handle.terminate_execution(); - assert!(ok, true); + assert!(ok); }); // Rn an infinite loop, which should be terminated. -- cgit v1.2.3