Skip to content

Commit 5136874

Browse files
authored
Merge pull request #22 from vks/fix-miri
Fix miri test for `rand_jitter`
2 parents 700ff43 + 502f92e commit 5136874

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,4 @@ jobs:
129129
cargo miri test --manifest-path rand_isaac/Cargo.toml --all-features
130130
cargo miri test --manifest-path rand_xorshift/Cargo.toml --all-features
131131
cargo miri test --manifest-path rand_xoshiro/Cargo.toml --all-features
132-
cargo miri test --manifest-path rand_jitter/Cargo.toml
132+
cargo miri test --manifest-path rand_jitter/Cargo.toml -- -Zmiri-disable-isolation

rand_isaac/src/isaac_array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ pub(super) mod isaac_array_serde {
113113
use core::marker::PhantomData;
114114
struct ArrayVisitor<T> {
115115
_pd: PhantomData<T>,
116-
};
116+
}
117117
impl<'de,T> Visitor<'de> for ArrayVisitor<T>
118118
where
119119
T: Deserialize<'de>+Default+Copy

0 commit comments

Comments
 (0)