Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
hansieodendaal committed Apr 2, 2024
1 parent 84faf1b commit a8746c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion applications/minotari_ledger_wallet/rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ imports_layout = "HorizontalVertical"
imports_granularity = "Crate"
match_block_trailing_comma = true
max_width = 120
newline_style = "Native"
newline_style = "Auto"
normalize_comments = true
overflow_delimited_expr = true
reorder_imports = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ mod fetch_total_size_stats {
let _block_and_outputs = add_many_chained_blocks(2, &db, &key_manager).await;
let stats = db.fetch_total_size_stats().unwrap();
assert_eq!(
stats.sizes().iter().find(|s| s.name == "utxos_db").unwrap().num_entries,
stats.sizes().iter().find(|s| s.name == "utxos").unwrap().num_entries,
genesis_output_count + 2
);
}
Expand Down
2 changes: 1 addition & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ imports_layout = "HorizontalVertical"
imports_granularity = "Crate"
match_block_trailing_comma = true
max_width = 120
newline_style = "Native"
newline_style = "Auto"
normalize_comments = true
overflow_delimited_expr = true
reorder_imports = true
Expand Down

0 comments on commit a8746c6

Please sign in to comment.