浏览代码

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: