Skip to content

Commit a6adb1f

Browse files
committed
Fix httpfs glob
1 parent 8557715 commit a6adb1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intake_xarray/tests/test_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def data_server():
4949
def test_http_server_files(data_server):
5050
test_files = ['RGB.byte.tif', 'example_1.nc', 'example_2.nc', 'little_green.tif', 'little_red.tif']
5151
h = fsspec.filesystem("http")
52-
out = h.glob(data_server + '/')
52+
out = h.glob(data_server + '/*')
5353
assert len(out) > 0
5454
assert set([data_server+'/'+x for x in test_files]).issubset(set(out))
5555

0 commit comments

Comments
 (0)