Skip to content

Commit

Permalink
Fix typo in assert!() invocation (denoland#4167)
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Feb 28, 2020
1 parent 973dbd1 commit 397deb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/isolate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 397deb4

Please sign in to comment.