Skip to content

Commit

Permalink
fix: rust test lint
Browse files Browse the repository at this point in the history
  • Loading branch information
2hwk committed Jan 13, 2023
1 parent 03fa266 commit c6f6d40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/systems/systems/src/air_conditioning/acs_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1752,8 +1752,8 @@ mod acs_controller_tests {
for b in 0..station_quantity_b {
pax_flag_b ^= 1 << b;
}
self.write_by_name(&format!("PAX_TOTAL_ROWS_A"), pax_flag_a);
self.write_by_name(&format!("PAX_TOTAL_ROWS_B"), pax_flag_b);
self.write_by_name("PAX_TOTAL_ROWS_A", pax_flag_a);
self.write_by_name("PAX_TOTAL_ROWS_B", pax_flag_b);
self.command(|a| a.test_cabin.update_number_of_passengers(pax_quantity));
}

Expand Down

0 comments on commit c6f6d40

Please sign in to comment.