Skip to content

Commit 211f150

Browse files
committed
cargo clippy
1 parent 40688e6 commit 211f150

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

boa_gc/src/test/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl Harness {
3434
BOA_GC.with(|current| {
3535
let gc = current.borrow();
3636
assert_eq!(gc.runtime.bytes_allocated, bytes);
37-
})
37+
});
3838
}
3939
}
4040

boa_gc/src/test/weak.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ fn eph_self_referential() {
166166
force_collect();
167167

168168
Harness::assert_exact_bytes_allocated(root_size);
169-
})
169+
});
170170
}
171171

172172
#[test]
@@ -216,5 +216,5 @@ fn eph_self_referential_chain() {
216216
force_collect();
217217

218218
Harness::assert_exact_bytes_allocated(root_size);
219-
})
219+
});
220220
}

0 commit comments

Comments
 (0)