diff options
author | Alex Crichton <alex@alexcrichton.com> | 2019-05-09 06:47:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 06:47:06 -0700 |
commit | 320464be3b014deaaf9387583862b1d4a69d89f8 (patch) | |
tree | 424943ad5a0b169d9027f2f0a1eedba9065ffffc /test-suite/tests | |
parent | d038a0bc5687cede01e626138868d83f487ba69c (diff) | |
parent | 4ad7eebf9e4de374eace6bb794dd96c41438e7bd (diff) | |
download | milf-rs-320464be3b014deaaf9387583862b1d4a69d89f8.tar.gz milf-rs-320464be3b014deaaf9387583862b1d4a69d89f8.zip |
Merge pull request #307 from ehuss/remove-conditional-rustc
Remove rustc version checking.
Diffstat (limited to 'test-suite/tests')
-rw-r--r-- | test-suite/tests/float.rs | 1 | ||||
-rw-r--r-- | test-suite/tests/macros.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/test-suite/tests/float.rs b/test-suite/tests/float.rs index 6590fe4..1421220 100644 --- a/test-suite/tests/float.rs +++ b/test-suite/tests/float.rs @@ -72,7 +72,6 @@ sf8 = -0.0 } #[test] -#[cfg(feature = "test-nan-sign")] fn float_inf() { float_inf_tests!(f32); float_inf_tests!(f64); diff --git a/test-suite/tests/macros.rs b/test-suite/tests/macros.rs index 6b77c81..35bf186 100644 --- a/test-suite/tests/macros.rs +++ b/test-suite/tests/macros.rs @@ -279,7 +279,6 @@ fn test_datetime() { // This test requires rustc >= 1.20. #[test] -#[cfg(feature = "test-quoted-keys-in-macro")] fn test_quoted_key() { let actual = toml! { "quoted" = true |