Skip to content

Commit

Permalink
bump rand so that the test passes
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Jun 12, 2019
1 parent 8f670e6 commit f72f53c
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 118 deletions.
181 changes: 65 additions & 116 deletions test-cargo-miri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test-cargo-miri/Cargo.toml
Expand Up @@ -8,4 +8,4 @@ edition = "2018"
byteorder = "1.0"

[dev-dependencies]
rand = "0.6.5"
rand = { version = "0.7.0-pre.0", features = ["small_rng"] }
2 changes: 1 addition & 1 deletion test-cargo-miri/tests/test.rs
@@ -1,4 +1,4 @@
use rand::{FromEntropy, Rng, rngs::SmallRng};
use rand::{SeedableRng, Rng, rngs::SmallRng};

// Having more than 1 test does seem to make a difference
// (i.e., this calls ptr::swap which having just one test does not).
Expand Down

0 comments on commit f72f53c

Please sign in to comment.