Skip to content

Commit

Permalink
requests shouldn't start with /
Browse files Browse the repository at this point in the history
  • Loading branch information
d70-t committed Jun 20, 2023
1 parent fc3b145 commit 04e7506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async def test_exists(event_loop):
assert res is True
res = await fs._exists(TEST_ROOT + "/missing")
assert res is False
res = await fs._exists("/missing")
res = await fs._exists("missing")
assert res is False


Expand Down

0 comments on commit 04e7506

Please sign in to comment.