Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Apr 17, 2020
1 parent c60fcb2 commit 1d51370
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gc/tests/finalize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
extern crate gc_derive;
extern crate gc;

use gc::Finalize;
use gc::{Finalize, Trace};
use std::cell::Cell;

#[derive(PartialEq, Eq, Debug, Clone, Copy)]
Expand Down
2 changes: 1 addition & 1 deletion gc/tests/gc_semantics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
extern crate gc_derive;
extern crate gc;

use gc::{force_collect, Finalize, Gc, GcCell, Trace};
use std::cell::Cell;
use std::thread::LocalKey;
use gc::{Trace, Finalize, GcCell, Gc, force_collect};

// Utility methods for the tests
#[derive(PartialEq, Eq, Debug, Clone, Copy)]
Expand Down

0 comments on commit 1d51370

Please sign in to comment.