aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGarrett Berg <vitiral@gmail.com>2017-07-09 15:10:36 -0600
committerGarrett Berg <vitiral@gmail.com>2017-07-09 15:10:36 -0600
commitffdafc4d361df0d6f6063af50863b7f87f4aa46a (patch)
tree5d6bd26e7aa73a3480aa55756ff7805dd84d1b28 /tests
parent391cb61dffd51322bd310be7cba8641fe3398c19 (diff)
downloadmilf-rs-ffdafc4d361df0d6f6063af50863b7f87f4aa46a.tar.gz
milf-rs-ffdafc4d361df0d6f6063af50863b7f87f4aa46a.zip
array doesn't break anything...
Diffstat (limited to 'tests')
-rw-r--r--tests/pretty.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/pretty.rs b/tests/pretty.rs
index 71c9e63..6758cfb 100644
--- a/tests/pretty.rs
+++ b/tests/pretty.rs
@@ -3,7 +3,7 @@ extern crate serde;
use serde::ser::Serialize;
-const example: &str = "\
+const EXAMPLE: &str = "\
[example]
text = '''
this is the first line
@@ -13,8 +13,8 @@ this is the second line
#[test]
fn test_pretty() {
- let value: toml::Value = toml::from_str(example).unwrap();
+ let value: toml::Value = toml::from_str(EXAMPLE).unwrap();
let mut result = String::with_capacity(128);
value.serialize(&mut toml::Serializer::pretty(&mut result)).unwrap();
- assert_eq!(example, &result);
+ assert_eq!(EXAMPLE, &result);
}