aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2019-05-08 12:12:14 -0700
committerEric Huss <eric@huss.org>2019-05-08 12:12:14 -0700
commit1b016589133e48d34dd5ae1b440581ded4cb4cdb (patch)
tree0a869218250d4876ec098aaaff4b7b59147663e7 /test-suite
parentd038a0bc5687cede01e626138868d83f487ba69c (diff)
downloadmilf-rs-1b016589133e48d34dd5ae1b440581ded4cb4cdb.tar.gz
milf-rs-1b016589133e48d34dd5ae1b440581ded4cb4cdb.zip
Migrate to 2018 edition.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/Cargo.toml1
-rw-r--r--test-suite/tests/macros.rs4
-rw-r--r--test-suite/tests/serde.rs2
3 files changed, 6 insertions, 1 deletions
diff --git a/test-suite/Cargo.toml b/test-suite/Cargo.toml
index 10ffbcb..fa81741 100644
--- a/test-suite/Cargo.toml
+++ b/test-suite/Cargo.toml
@@ -4,6 +4,7 @@ version = "0.0.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
build = "build.rs"
publish = false
+edition = "2018"
[build-dependencies]
rustc_version = "0.2"
diff --git a/test-suite/tests/macros.rs b/test-suite/tests/macros.rs
index 6b77c81..db94549 100644
--- a/test-suite/tests/macros.rs
+++ b/test-suite/tests/macros.rs
@@ -7,6 +7,8 @@ use std::f64;
macro_rules! table {
($($key:expr => $value:expr,)*) => {{
+ // https://github.com/rust-lang/rust/issues/60643
+ #[allow(unused_mut)]
let mut table = toml::value::Table::new();
$(
table.insert($key.to_string(), $value.into());
@@ -17,6 +19,8 @@ macro_rules! table {
macro_rules! array {
($($element:expr,)*) => {{
+ // https://github.com/rust-lang/rust/issues/60643
+ #[allow(unused_mut)]
let mut array = toml::value::Array::new();
$(
array.push($element.into());
diff --git a/test-suite/tests/serde.rs b/test-suite/tests/serde.rs
index 9bbf7e0..c72bfc6 100644
--- a/test-suite/tests/serde.rs
+++ b/test-suite/tests/serde.rs
@@ -130,7 +130,7 @@ fn application_decode_error() {
struct Range10(usize);
impl<'de> Deserialize<'de> for Range10 {
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Range10, D::Error> {
- let x: usize = try!(Deserialize::deserialize(d));
+ let x: usize = Deserialize::deserialize(d)?;
if x > 10 {
Err(serde::de::Error::custom("more than 10"))
} else {