Skip to content

Commit

Permalink
Fixed tests for new status bar display.
Browse files Browse the repository at this point in the history
  • Loading branch information
apognu committed Oct 12, 2024
1 parent 3d1fd01 commit d50f58f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/integration/menus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async fn session_menu() {
runner.send_key(KeyCode::Enter).await;
runner.wait_for_render().await;

assert!(runner.output().await.contains("CMD Second Session"));
assert!(runner.output().await.contains("SESS Second Session"));

runner.send_key(KeyCode::F(3)).await;
runner.wait_for_render().await;
Expand All @@ -159,7 +159,7 @@ async fn session_menu() {
runner.send_key(KeyCode::Enter).await;
runner.wait_for_render().await;

assert!(runner.output().await.contains("CMD My Session"));
assert!(runner.output().await.contains("SESS My Session"));
}
});

Expand Down

0 comments on commit d50f58f

Please sign in to comment.