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

Commit

Permalink
chore: fix one lint in test
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed Sep 18, 2024
1 parent af5cdb4 commit c3228f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/helpers/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ mod tests {
let root_ast = parse("[A]\nb = 1\na = 1\n\n[B]\nb = 2")
.into_syntax()
.clone_for_update();
let mut tables = Tables::from_ast(&root_ast);
let tables = Tables::from_ast(&root_ast);
{
let table = &mut tables.get("A").unwrap().first().unwrap().borrow_mut();
reorder_table_keys(table, &["", "a", "b"]);
Expand Down

0 comments on commit c3228f7

Please sign in to comment.