summaryrefslogtreecommitdiffstats
path: root/tests/file_hjson.rs
diff options
context:
space:
mode:
authorEugeen Sablin <EugeenSablin@gmail.com>2018-11-30 18:32:02 +0300
committerEugeen Sablin <EugeenSablin@gmail.com>2018-11-30 18:32:02 +0300
commit00d0db2dafa4fc2f80d235099f9903ad1ea3f663 (patch)
tree2326751c544eb6c67e19d9291afdc9437581748a /tests/file_hjson.rs
parent802f947fa2b5060b605aa39c0c7c201ede9a5ed8 (diff)
upgrade serde-hjson to v0.8.2 so we can have consistent error ckeck
Diffstat (limited to 'tests/file_hjson.rs')
-rw-r--r--tests/file_hjson.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/file_hjson.rs b/tests/file_hjson.rs
index 9c63ad6..086489b 100644
--- a/tests/file_hjson.rs
+++ b/tests/file_hjson.rs
@@ -72,6 +72,6 @@ fn test_error_parse() {
assert!(res.is_err());
assert_eq!(
res.unwrap_err().to_string(),
- "Found a punctuator where a key name was expected (check your syntax or use quotes if the key name includes {}[],: or whitespace) at line 1 column 1 in tests/Settings-invalid.hjson".to_string()
+ "Found a punctuator where a key name was expected (check your syntax or use quotes if the key name includes {}[],: or whitespace) at line 4 column 1 in tests/Settings-invalid.hjson".to_string()
);
}