Skip to content

Commit

Permalink
cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Jan 20, 2023
1 parent 2a2f9f7 commit 533d7c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion boa_gc/src/test/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl Harness {
BOA_GC.with(|current| {
let gc = current.borrow();
assert_eq!(gc.runtime.bytes_allocated, bytes);
})
});
}
}

Expand Down
4 changes: 2 additions & 2 deletions boa_gc/src/test/weak.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ fn eph_self_referential() {
force_collect();

Harness::assert_exact_bytes_allocated(root_size);
})
});
}

#[test]
Expand Down Expand Up @@ -216,5 +216,5 @@ fn eph_self_referential_chain() {
force_collect();

Harness::assert_exact_bytes_allocated(root_size);
})
});
}

0 comments on commit 533d7c6

Please sign in to comment.