Skip to content

Commit 88f5bbb

Browse files
Merge branch 'main' into add-figure-script
2 parents 24b175f + 2894b58 commit 88f5bbb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/nwb_benchmarks/benchmarks/time_download.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from .params_remote_download import hdf5_params, lindi_remote_rfs_params, zarr_params
1313

1414

15-
class BaseDownloadDandiAPIBenchmark(BaseBenchmark):
15+
class BaseDandiAPIDownloadBenchmark(BaseBenchmark):
1616
"""
1717
Base class for timing the download of remote NWB files using the DANDI API.
1818
"""
@@ -27,7 +27,7 @@ def teardown(self, params: dict[str, str]):
2727
self.tmpdir.cleanup()
2828

2929

30-
class HDF5DownloadDandiAPIBenchmark(BaseDownloadDandiAPIBenchmark):
30+
class HDF5DandiAPIDownloadBenchmark(BaseDandiAPIDownloadBenchmark):
3131
"""
3232
Time the download of remote HDF5 NWB files using the DANDI API.
3333
"""
@@ -41,7 +41,7 @@ def time_download_hdf5_dandi_api(self, params: dict[str, str]):
4141
download(urls=params["https_url"], output_dir=self.tmpdir.name)
4242

4343

44-
class ZarrDownloadDandiAPIBenchmark(BaseDownloadDandiAPIBenchmark):
44+
class ZarrDandiAPIDownloadBenchmark(BaseDandiAPIDownloadBenchmark):
4545
"""
4646
Time the download of remote Zarr NWB files using the DANDI API.
4747
"""
@@ -55,7 +55,7 @@ def time_download_zarr_dandi_api(self, params: dict[str, str]):
5555
download(urls=params["https_url"], output_dir=self.tmpdir.name)
5656

5757

58-
class LindiDownloadDandiAPIBenchmark(BaseDownloadDandiAPIBenchmark):
58+
class LindiDandiAPIDownloadBenchmark(BaseDandiAPIDownloadBenchmark):
5959
"""
6060
Time the download of a remote LINDI JSON file.
6161
"""

0 commit comments

Comments
 (0)