Skip to content

Commit d3f45d7

Browse files
committed
Add fix to fmt error in status_bar.rs
1 parent 1e29ecc commit d3f45d7

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/components/status_bar.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ mod tests {
140140
fn bitcoin_config_no_file_with_warning_shows_try_again() {
141141
let mut app = App::new();
142142
app.current_screen = CurrentScreen::BitcoinConfig;
143-
app.bitcoin_config_view.warning_message =
144-
Some("Not a valid config.".to_string());
143+
app.bitcoin_config_view.warning_message = Some("Not a valid config.".to_string());
145144
let output = render_status_bar(&app);
146145
assert!(output.contains("Not a valid config."));
147146
assert!(output.contains("Try again"));

0 commit comments

Comments
 (0)