Skip to content

Commit

Permalink
update test to new query answer
Browse files Browse the repository at this point in the history
  • Loading branch information
LGFae committed Oct 12, 2022
1 parent 31bbd85 commit 601df3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ fn sending_img_that_does_not_exist() {
fn query_outputs() -> String {
let output = cmd().arg("query").output().expect("Query failed!");
let stdout = String::from_utf8(output.stdout).unwrap();
stdout.split_once(' ').unwrap().0.to_string()
stdout.split_once(':').unwrap().0.to_string()
}

fn sending_img_to_individual_monitors(output: &str) {
Expand Down

0 comments on commit 601df3b

Please sign in to comment.