diff --git a/boa_gc/src/test/mod.rs b/boa_gc/src/test/mod.rs index 9ef9c88ff74..81aadb27f39 100644 --- a/boa_gc/src/test/mod.rs +++ b/boa_gc/src/test/mod.rs @@ -34,7 +34,7 @@ impl Harness { BOA_GC.with(|current| { let gc = current.borrow(); assert_eq!(gc.runtime.bytes_allocated, bytes); - }) + }); } } diff --git a/boa_gc/src/test/weak.rs b/boa_gc/src/test/weak.rs index 19cc28a72a5..2635565848b 100644 --- a/boa_gc/src/test/weak.rs +++ b/boa_gc/src/test/weak.rs @@ -166,7 +166,7 @@ fn eph_self_referential() { force_collect(); Harness::assert_exact_bytes_allocated(root_size); - }) + }); } #[test] @@ -216,5 +216,5 @@ fn eph_self_referential_chain() { force_collect(); Harness::assert_exact_bytes_allocated(root_size); - }) + }); }