Skip to content

Commit

Permalink
Merge commit 'af8abbb870562f38fa8f760f0462645277dc0e89'
Browse files Browse the repository at this point in the history
* commit 'af8abbb870562f38fa8f760f0462645277dc0e89':
  Squashed 'json/' changes from 14d05dcea..4cfead7ba
  • Loading branch information
Julian committed Aug 17, 2022
2 parents a94115b + af8abbb commit 0c4aaaf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion json/bin/jsonschema_suite
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@ def url_for_path(path):
Tests in the refRemote.json file reference this URL, and assume the
corresponding contents are available at the URL.
"""
return urljoin(REMOTES_BASE_URL, str(path.relative_to(REMOTES_DIR)))

return urljoin(
REMOTES_BASE_URL,
str(path.relative_to(REMOTES_DIR)).replace("\\", "/") # Windows...
)


class SanityTests(unittest.TestCase):
Expand Down

0 comments on commit 0c4aaaf

Please sign in to comment.