Skip to content

Commit

Permalink
Fix a remaining POSIX separator
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Apr 8, 2020
1 parent c2f54ef commit f0b105e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def test_validate_object_id():
def allow_missing(pointer):
return pointer == '/properties/allowMissing'

filepath = 'schema/object_id.json'
filepath = os.path.join('schema', 'object_id.json')
with pytest.warns(UserWarning) as records:
errors = validate_object_id(path(filepath), JsonRef.replace_refs(parse(filepath)), allow_missing=allow_missing,
allow_optional='/properties/allowOptional')
Expand Down

0 comments on commit f0b105e

Please sign in to comment.