We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cfcf86 commit d2538bfCopy full SHA for d2538bf
tools/test/toolchains/api_test.py
@@ -16,7 +16,7 @@
16
from tools.targets import TARGET_MAP
17
from tools.notifier.mock import MockNotifier
18
19
-ALPHABET = [char for char in printable if char not in [u'.', u'/']]
+ALPHABET = [char for char in printable if char not in [u'.', u'/', u'\\']]
20
21
@given(fixed_dictionaries({
22
'common': lists(text()),
@@ -175,7 +175,7 @@ def test_detect_duplicates(filenames):
175
assert "dupe.c" in notification["message"]
176
assert "dupe.cpp" in notification["message"]
177
178
-@given(text(alphabet=ALPHABET + ["/"], min_size=1))
+@given(text(alphabet=ALPHABET + [os.sep], min_size=1))
179
@given(booleans())
180
181
@settings(max_examples=20)
0 commit comments