Skip to content

Commit 32a0983

Browse files
authored
Merge branch 'master' into shiki/fix-nstextinputclient-impl
2 parents 182250d + d837c88 commit 32a0983

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

winit-appkit/src/monitor.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,10 @@ mod tests {
352352

353353
#[test]
354354
fn uuid_stable() {
355-
let handle_a = MonitorHandle::new(1).unwrap();
356-
let handle_b = MonitorHandle::new(1).unwrap();
355+
let primary_id = CGMainDisplayID();
356+
357+
let handle_a = MonitorHandle::new(primary_id).unwrap();
358+
let handle_b = MonitorHandle::new(primary_id).unwrap();
357359
assert_eq!(handle_a, handle_b);
358360
assert_eq!(handle_a.display_id(), handle_b.display_id());
359361
assert_eq!(handle_a.uuid(), handle_b.uuid());
@@ -368,8 +370,10 @@ mod tests {
368370
/// Test the MonitorHandle::new fallback.
369371
#[test]
370372
fn monitorhandle_from_zero() {
373+
let primary_id = CGMainDisplayID();
374+
371375
let handle0 = MonitorHandle::new(0).unwrap();
372-
let handle1 = MonitorHandle::new(1).unwrap();
376+
let handle1 = MonitorHandle::new(primary_id).unwrap();
373377
assert_eq!(handle0, handle1);
374378
assert_eq!(handle0.display_id(), handle1.display_id());
375379
assert_eq!(handle0.uuid(), handle1.uuid());

0 commit comments

Comments
 (0)