summaryrefslogtreecommitdiff
path: root/core/isolate.rs
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2020-02-27 16:27:24 -0800
committerBert Belder <bertbelder@gmail.com>2020-02-27 16:30:13 -0800
commit397deb4e29775b7395a7ed4ccd253b89ee211b66 (patch)
tree7b0364973f0324ca2c2dc2572e927b94059eed53 /core/isolate.rs
parent973dbd1ba157f80bd85a43c4b79a785ab9f93270 (diff)
Fix typo in assert!() invocation (#4167)
Diffstat (limited to 'core/isolate.rs')
-rw-r--r--core/isolate.rs2
1 files changed, 1 insertions, 1 deletions
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.