소스 검색

fix SmartDisplay visible parameter (#2451)

benedikt-bartscher 1 년 전
부모
커밋
5cc1ecfe4a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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: