Skip to content

Commit

Permalink
Move test fixture into src folder to unbreak im-rc build.
Browse files Browse the repository at this point in the history
  • Loading branch information
bodil committed Jul 14, 2020
1 parent b3257b4 commit 1074663
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions rc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ sized-chunks = "0.6"
rand_core = "0.5.1"
rand_xoshiro = "0.4"
quickcheck = { version = "0.9", optional = true }
proptest = { version = "0.9", optional = true }
proptest = { version = "0.10", optional = true }
serde = { version = "1", optional = true }
rayon = { version = "1", optional = true }
refpool = { version = "0.4", optional = true }
arbitrary = { version = "0.4", optional = true }

[dev-dependencies]
proptest = "0.9"
proptest = "0.10"
serde = "1"
serde_json = "1"
rayon = "1"
rand = { version = "0.7", features = ["small_rng"] }
pretty_assertions = "0.6"
metrohash = "1"
proptest-derive = "0.1"
proptest-derive = "0.2"

["package.metadata.docs.rs"]
version_check = "0.9"
2 changes: 1 addition & 1 deletion src/ord/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2380,7 +2380,7 @@ mod test {
#[test]
fn issue_124() {
let mut map = OrdMap::new();
let contents = include_str!("../../test-fixtures/issue_124.txt");
let contents = include_str!("test-fixtures/issue_124.txt");
for line in contents.split('\n') {
if line.starts_with("insert ") {
map.insert(line[7..].parse::<u32>().unwrap(), 0);
Expand Down
File renamed without changes.

0 comments on commit 1074663

Please sign in to comment.