Skip to content

Commit

Permalink
Use '/' when forming resource path for Python tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsorby committed Sep 13, 2020
1 parent 271eed9 commit a76ec62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bindings/python/test_resources.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

def resource_path(relative_path=''):

return os.path.join(TESTS_RESOURCE_LOCATION, relative_path)
return TESTS_RESOURCE_LOCATION + '/' + relative_path


def file_contents(file_name):
Expand Down

0 comments on commit a76ec62

Please sign in to comment.