1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

Fix typo in assert!() invocation (#4167)

This commit is contained in:
Bert Belder 2020-02-27 16:27:24 -08:00
parent 973dbd1ba1
commit 397deb4e29
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -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.