Skip to content

Commit 92a8203

Browse files
committed
Fix formatting
1 parent b34b90e commit 92a8203

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/table.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,10 @@ fn test_table_fmt() -> Result<()> {
415415
);
416416

417417
let table2 = lua.create_table_from([("1", "first"), ("2", "second")])?;
418-
assert_eq!(format!("{table2:#?}"), "{\n [\"1\"] = \"first\",\n [\"2\"] = \"second\",\n}");
418+
assert_eq!(
419+
format!("{table2:#?}"),
420+
"{\n [\"1\"] = \"first\",\n [\"2\"] = \"second\",\n}"
421+
);
419422

420423
Ok(())
421424
}

0 commit comments

Comments
 (0)