Skip to content

Commit

Permalink
Fix double asterisk glob in tests (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariosasko committed Nov 2, 2023
1 parent ad684a5 commit 4422f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcsfs/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def test_gcs_glob(gcs):
assert fn in gcs.glob(TEST_BUCKET + "/nested/file*")
assert fn in gcs.glob(TEST_BUCKET + "/*/*")
assert fn in gcs.glob(TEST_BUCKET + "/**")
assert fn in gcs.glob(TEST_BUCKET + "/**1")
assert fn in gcs.glob(TEST_BUCKET + "/**/*1")
assert all(
f in gcs.find(TEST_BUCKET)
for f in gcs.glob(TEST_BUCKET + "/nested/*")
Expand Down

0 comments on commit 4422f45

Please sign in to comment.