summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:41:14 -0700
committerRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:41:14 -0700
commite9354383d9dcd5d7fc9fd8539b3ef37b3e6a8645 (patch)
tree1d1883b422824d9e12076755117bc7c8c9eb918b /tests
parentcbb9ef88ea6f6452614dd8bbffce7203b1358a55 (diff)
Update readme/changelog for 0.9
Diffstat (limited to 'tests')
-rw-r--r--tests/env.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/env.rs b/tests/env.rs
index b204118..932d2fc 100644
--- a/tests/env.rs
+++ b/tests/env.rs
@@ -54,8 +54,7 @@ fn test_prefix_with_variant_forms_of_spelling() {
fn test_separator_behavior() {
env::set_var("C_B_A", "abc");
- let mut environment = Environment::with_prefix("C");
- environment.separator("_");
+ let mut environment = Environment::with_prefix("C").separator("_");
assert!(environment.collect().unwrap().contains_key("b.a"));