We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57877a7 commit d625661Copy full SHA for d625661
1 file changed
tests/conftest.py
@@ -29,4 +29,7 @@ def check(self, data, **kwargs):
29
def _strip_ignores(self, data):
30
for ig in self.ignores:
31
data = re.sub(ig, "", data)
32
- return data
+ # Normalize boolean values: convert 0/1 to False/True for consistency across platforms
33
+ data = re.sub(r'((?:glob|hidden|includehidden|titlesonly)=")0(")', r'\1False\2', data)
34
+ data = re.sub(r'((?:glob|hidden|includehidden|titlesonly)=")1(")', r'\1True\2', data)
35
+ return data
0 commit comments