We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b523d66 commit 8ac1fd5Copy full SHA for 8ac1fd5
1 file changed
tests/scripts/test_script_util.py
@@ -125,11 +125,7 @@ def test_tsv_in_correct_subfolder2(self):
125
os.path.normpath("prerelease/hedtsv/test_schema/test_schema_Tag.tsv"),
126
os.path.normpath("prerelease/hedtsv/wrong_folder/wrong_name_Tag.tsv"), # Should be ignored
127
]
128
- expected = {
129
- os.path.normpath("prerelease/test_schema"): {
130
- ".tsv": os.path.normpath("prerelease/hedtsv/test_schema")
131
- }
132
+ expected = {os.path.normpath("prerelease/test_schema"): {".tsv": os.path.normpath("prerelease/hedtsv/test_schema")}}
133
with contextlib.redirect_stdout(None):
134
result = sort_base_schemas(filenames)
135
self.assertEqual(dict(result), expected)
0 commit comments