Skip to content

Commit

Permalink
fmt 1
Browse files Browse the repository at this point in the history
  • Loading branch information
kkafar committed May 5, 2024
1 parent 6592bb4 commit 562e372
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/selection_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,12 @@ fn boltzmann_returns_demanded_size() {
);

// FIXME: We must add mocking!
let metrics = Metrics::new(Some(std::time::Instant::now()), None, 40, expected_population_size);
let metrics = Metrics::new(
Some(std::time::Instant::now()),
None,
40,
expected_population_size,
);

let selected = Boltzmann::new(expected_selection_size, 0.2, 6.0, 300, true).apply(&metrics, &population);

Expand Down

0 comments on commit 562e372

Please sign in to comment.