aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorErich Gubler <erichdongubler@gmail.com>2019-04-02 09:35:28 -0600
committerErich Gubler <erichdongubler@gmail.com>2019-04-02 09:35:28 -0600
commitd1552ef0eeff95b1d5ce60787ae6cc6c63832615 (patch)
treeec612df2c878836a3d18d7399607abccfb01abb1 /test-suite
parentd729bf9c53fcfe8f1e5506a938b88d81526b55a4 (diff)
downloadmilf-rs-d1552ef0eeff95b1d5ce60787ae6cc6c63832615.tar.gz
milf-rs-d1552ef0eeff95b1d5ce60787ae6cc6c63832615.zip
Fix warnings for deprecated usages of trim_{left,right}_matches.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/tests/valid.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/tests/valid.rs b/test-suite/tests/valid.rs
index 7c1691c..68e0ea2 100644
--- a/test-suite/tests/valid.rs
+++ b/test-suite/tests/valid.rs
@@ -19,7 +19,7 @@ fn to_json(toml: toml::Value) -> Json {
Toml::Integer(i) => doit("integer", Json::String(i.to_string())),
Toml::Float(f) => doit("float", Json::String({
let s = format!("{:.15}", f);
- let s = format!("{}", s.trim_right_matches('0'));
+ let s = format!("{}", s.trim_end_matches('0'));
if s.ends_with('.') {format!("{}0", s)} else {s}
})),
Toml::Boolean(b) => doit("bool", Json::String(format!("{}", b))),