Skip to content

Commit

Permalink
Fix clippy warning in tests/basic.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Apr 2, 2021
1 parent 945ba84 commit 86fa5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ fn test_basic() -> anyhow::Result<()> {
});
let widgets = put_widgets_in.unwrap();
widgets.buf_left.set_text("test left");
wait_for!(get_text(&widgets.buf_right) == "")?;
wait_for!(get_text(&widgets.buf_right).is_empty())?;
widgets.btn_copy_left_to_right.emit_clicked();
wait_for!(get_text(&widgets.buf_right) == "test left")?;
widgets.buf_left.set_text("");
Expand Down

0 comments on commit 86fa5ce

Please sign in to comment.