Fix the indentation to be consistent with the repository
This commit is contained in:
parent
442f663c2d
commit
568dd2ef4b
|
@ -445,12 +445,12 @@ mod tests {
|
||||||
assert_eq!(*looked, Value::Integer(0));
|
assert_eq!(*looked, Value::Integer(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn lookup_advanced_table() {
|
fn lookup_advanced_table() {
|
||||||
let value: Value = r#"[table."name.other"] value = "my value""#.parse().unwrap();
|
let value: Value = r#"[table."name.other"] value = "my value""#.parse().unwrap();
|
||||||
let looked = value.lookup(r#"table."name.other".value"#).unwrap();
|
let looked = value.lookup(r#"table."name.other".value"#).unwrap();
|
||||||
assert_eq!(*looked, Value::String(String::from("my value")));
|
assert_eq!(*looked, Value::String(String::from("my value")));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn lookup_mut_advanced() {
|
fn lookup_mut_advanced() {
|
||||||
|
|
Loading…
Reference in a new issue