Skip to content

Commit a241799

Browse files
committed
Fix IDs of remotes in the test suite on Windows.
bb98b030046d7772679c28da806a01da6df02c96 in json-schema-org/JSON-Schema-Test-Suite seems to have accidentally changed the output here on Windows. Possibly I should fix that upstream, but for now...
1 parent c4d94f3 commit a241799

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonschema/tests/_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def _remotes(self):
5050
[sys.executable, str(jsonschema_suite), "remotes"],
5151
)
5252
return {
53-
"http://localhost:1234/" + name: schema
53+
"http://localhost:1234/" + name.replace("\\", "/"): schema
5454
for name, schema in json.loads(remotes.decode("utf-8")).items()
5555
}
5656

0 commit comments

Comments
 (0)