aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBourgond Aries <macocio@gmail.com>2016-03-27 21:19:03 +0200
committerBourgond Aries <macocio@gmail.com>2016-03-27 21:19:03 +0200
commit568dd2ef4ba7db91d59988825f07e3e847e8c8d8 (patch)
treef999ddcff279fd28a6a014d4afb5f53e33c36fb9 /src/lib.rs
parent442f663c2d53e7ad469a3979c04907282a38ac12 (diff)
downloadmilf-rs-568dd2ef4ba7db91d59988825f07e3e847e8c8d8.tar.gz
milf-rs-568dd2ef4ba7db91d59988825f07e3e847e8c8d8.zip
Fix the indentation to be consistent with the repository
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9af0c70..83faec7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -445,12 +445,12 @@ mod tests {
assert_eq!(*looked, Value::Integer(0));
}
- #[test]
- fn lookup_advanced_table() {
+ #[test]
+ fn lookup_advanced_table() {
let value: Value = r#"[table."name.other"] value = "my value""#.parse().unwrap();
let looked = value.lookup(r#"table."name.other".value"#).unwrap();
assert_eq!(*looked, Value::String(String::from("my value")));
- }
+ }
#[test]
fn lookup_mut_advanced() {