Skip to content

Commit c02a882

Browse files
fix: Remove unused variable in mmap test
1 parent 12ea814 commit c02a882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_npy_codec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def test_npy_ref_mmap_remote_storage(self, tmp_path):
182182
"""NpyRef mmap_mode should download to cache for remote storage."""
183183
# Create test data
184184
test_array = np.array([1, 2, 3, 4, 5], dtype=np.int32)
185-
npy_buffer = np.save(tmp_path / "temp.npy", test_array)
185+
np.save(tmp_path / "temp.npy", test_array)
186186
npy_bytes = (tmp_path / "temp.npy").read_bytes()
187187

188188
metadata = {

0 commit comments

Comments
 (0)