Skip to content

Commit

Permalink
ci: fix missing update_tree flag
Browse files Browse the repository at this point in the history
  • Loading branch information
roosta committed Dec 25, 2024
1 parent 242fd40 commit bbfbc71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn connection_tree() -> Result<(), Box<dyn Error>> {
let mut conn = Connection::new()?;
let config = Config::default();
let res = i3wsr_core::regex::parse_config(&config)?;
assert!(update_tree(&mut conn, &config, &res).is_ok());
assert!(update_tree(&mut conn, &config, &res, false).is_ok());

let tree = conn.get_tree()?;
let workspaces = i3wsr_core::get_workspaces(tree);
Expand Down

0 comments on commit bbfbc71

Please sign in to comment.