Skip to content

Commit 8fab189

Browse files
committed
No macOS either
1 parent d8680d8 commit 8fab189

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from subprocess import PIPE, STDOUT
3131
from typing import Dict, Tuple
3232
from urllib.parse import parse_qs, unquote, unquote_plus, urlparse
33-
from .utils import LINUX
33+
from .utils import WINDOWS
3434

3535
import clang_native
3636
import jsrun
@@ -138,7 +138,7 @@ def configure(data_dir):
138138

139139
class FirefoxConfig:
140140
data_dir_flag = '-profile '
141-
default_flags = ('-new-instance',) if LINUX else ('-new-instance', '-wait-for-browser')
141+
default_flags = ('-new-instance', '-wait-for-browser') if WINDOWS else ('-new-instance',)
142142
headless_flags = '-headless'
143143
executable_name = utils.exe_suffix('firefox')
144144

0 commit comments

Comments
 (0)