Browse Source

fix SmartDisplay visible parameter (#2451)

benedikt-bartscher 1 year ago
parent
commit
5cc1ecfe4a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      integration/conftest.py

+ 1 - 1
integration/conftest.py

@@ -26,7 +26,7 @@ def xvfb():
         )
         )
 
 
         global DISPLAY
         global DISPLAY
-        with SmartDisplay(visible=0, size=XVFB_DIMENSIONS) as DISPLAY:
+        with SmartDisplay(visible=False, size=XVFB_DIMENSIONS) as DISPLAY:
             yield DISPLAY
             yield DISPLAY
         DISPLAY = None
         DISPLAY = None
     else:
     else: