1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 13:50:04 -04:00

Fix CI failures (#5407)

Fixes the RUSTSEC-2024-0399 issue with rustls and the errors in the
regression test
See:
https://rustsec.org/advisories/RUSTSEC-2024-0399.html
https://github.com/rustls/rustls/issues/2227

This also fixes the cargo deny runs which are currently failing

* [x] I have followed the instructions in the PR template
This commit is contained in:
Nicolas
2024-11-26 20:09:59 +01:00
committed by GitHub
parent 7cee35c02a
commit 88543270e0
2 changed files with 5 additions and 5 deletions

View File

@@ -13,18 +13,18 @@ pub fn focus_should_skip_over_disabled_buttons() {
harness.press_key(egui::Key::Tab);
harness.run();
let button_1 = harness.get_by_name("Button 1");
let button_1 = harness.get_by_label("Button 1");
assert!(button_1.is_focused());
harness.press_key(egui::Key::Tab);
harness.run();
let button_3 = harness.get_by_name("Button 3");
let button_3 = harness.get_by_label("Button 3");
assert!(button_3.is_focused());
harness.press_key(egui::Key::Tab);
harness.run();
let button_1 = harness.get_by_name("Button 1");
let button_1 = harness.get_by_label("Button 1");
assert!(button_1.is_focused());
}