From 4c6df54d6fd17f65696ca5ffd846f62f919937f3 Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 29 Oct 2022 18:44:05 +0200 Subject: [PATCH] tests: Fix failing window unit test on macOS Fixes #804 (together with previous commit 979f194f499e76a12ba137c52b3b33f51d7d8e6c) --- tests/display/test_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/display/test_window.py b/tests/display/test_window.py index 1c44ea76e3..ff434b8dfc 100644 --- a/tests/display/test_window.py +++ b/tests/display/test_window.py @@ -11,6 +11,7 @@ def test_window_basic(window): default_props.set_origin(current_props.get_origin()) default_props.set_minimized(False) default_props.foreground = current_props.foreground + default_props.z_order = current_props.z_order # The rest should be the same assert current_props == default_props