summaryrefslogtreecommitdiffstats
path: root/tests/file_toml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/file_toml.rs')
-rw-r--r--tests/file_toml.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/file_toml.rs b/tests/file_toml.rs
index b964586..7591c20 100644
--- a/tests/file_toml.rs
+++ b/tests/file_toml.rs
@@ -1,13 +1,13 @@
#![cfg(feature = "toml")]
-extern crate config;
+extern crate config_maint;
extern crate float_cmp;
extern crate serde;
#[macro_use]
extern crate serde_derive;
-use config::*;
+use config_maint::*;
use float_cmp::ApproxEqUlps;
use std::collections::HashMap;
use std::path::PathBuf;
@@ -86,7 +86,7 @@ fn test_error_parse() {
assert_eq!(
res.unwrap_err().to_string(),
format!(
- "failed to parse datetime for key `error` at line 2 column 9 in {}",
+ "invalid TOML value, did you mean to use a quoted string? at line 2 column 9 in {}",
path_with_extension.display()
)
);