Sfoglia il codice sorgente

fix SmartDisplay visible parameter (#2451)

benedikt-bartscher 1 anno fa
parent
commit
5cc1ecfe4a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      integration/conftest.py

+ 1 - 1
integration/conftest.py

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