We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a7ffed8 + 1a16c2c commit 8febc6aCopy full SHA for 8febc6a
tests/test_formatting.py
@@ -141,7 +141,8 @@ def test_get_robot_files_directory():
141
# Should find all .robot files in INPUT_DIR
142
assert len(result) >= 2
143
assert all(f.suffix == '.robot' for f in result)
144
- assert all(f.parent == INPUT_DIR for f in result)
+ # All files should be within the INPUT_DIR tree
145
+ assert all(INPUT_DIR in f.parents or f.parent == INPUT_DIR for f in result)
146
147
148
def test_get_robot_files_mixed_paths():
0 commit comments