Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit fd6c825

Browse files
committed
chore: fix one lint in test
Signed-off-by: Henry Schreiner <[email protected]>
1 parent b37eb90 commit fd6c825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/src/helpers/table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ mod tests {
328328
let root_ast = parse("[A]\nb = 1\na = 1\n\n[B]\nb = 2")
329329
.into_syntax()
330330
.clone_for_update();
331-
let mut tables = Tables::from_ast(&root_ast);
331+
let tables = Tables::from_ast(&root_ast);
332332
{
333333
let table = &mut tables.get("A").unwrap().first().unwrap().borrow_mut();
334334
reorder_table_keys(table, &["", "a", "b"]);

0 commit comments

Comments
 (0)