From 91ab32784ea82b662ab55f2e32d70183cfe0881c Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Thu, 7 Nov 2024 16:24:53 -0800 Subject: [PATCH] Fix codespell --- tests/unit/test_zarrio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_zarrio.py b/tests/unit/test_zarrio.py index b0c4429e..260bf9a4 100644 --- a/tests/unit/test_zarrio.py +++ b/tests/unit/test_zarrio.py @@ -208,7 +208,7 @@ def test_force_overwrite_when_file_exists(self): with open(self.store, "w") as file: file.write("Just a test file used in TestOverwriteExistingFile") # try to create a Zarr file at the same location (i.e., self.store) as the - # test text file to force overwriting the exsiting file. + # test text file to force overwriting the existing file. self.create_zarr(force_overwrite=True, mode='w') def test_force_overwrite_when_dir_exists(self):