diff options
| author | Bourgond Aries <macocio@gmail.com> | 2016-03-27 21:19:03 +0200 | 
|---|---|---|
| committer | Bourgond Aries <macocio@gmail.com> | 2016-03-27 21:19:03 +0200 | 
| commit | 568dd2ef4ba7db91d59988825f07e3e847e8c8d8 (patch) | |
| tree | f999ddcff279fd28a6a014d4afb5f53e33c36fb9 | |
| parent | 442f663c2d53e7ad469a3979c04907282a38ac12 (diff) | |
| download | milf-rs-568dd2ef4ba7db91d59988825f07e3e847e8c8d8.tar.gz milf-rs-568dd2ef4ba7db91d59988825f07e3e847e8c8d8.zip | |
Fix the indentation to be consistent with the repository
| -rw-r--r-- | src/lib.rs | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -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() { |