Skip to content

Commit 0952455

Browse files
committed
cleanup
1 parent 4196ae4 commit 0952455

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_60_clean.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -422,15 +422,15 @@ def test_clean_duplicates(tmp_path: pathlib.Path) -> None:
422422
fsspec.filesystem("file").pipe_file(tmpfile, ONE_BYTE)
423423

424424
@cache.cacheable
425-
def test1(path: pathlib.Path) -> BinaryIO:
425+
def func1(path: pathlib.Path) -> BinaryIO:
426426
return path.open("rb")
427427

428428
@cache.cacheable
429-
def test2(path: pathlib.Path) -> BinaryIO:
429+
def func2(path: pathlib.Path) -> BinaryIO:
430430
return path.open("rb")
431431

432-
fp1 = test1(tmpfile)
433-
fp2 = test2(tmpfile)
432+
fp1 = func1(tmpfile)
433+
fp2 = func2(tmpfile)
434434
assert fp1.name == fp2.name
435435

436436
cur.execute("SELECT COUNT(*) FROM cache_entries", ())

0 commit comments

Comments
 (0)