File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def test_files(files_dir: Path, file_names: ty.List[str]) -> ty.List[Path]:
2929def test_list_dir_contents (
3030 files_dir : Path , test_files : ty .List [Path ], tmp_path : Path
3131) -> None :
32- text_set = SetOf [TextFile ].convert (DirectoryOf [TextFile ](files_dir ), cache_root = tmp_path / "cache" ) # type: ignore[misc]
32+ text_set = SetOf [TextFile ].convert (DirectoryOf [TextFile ](files_dir )) # type: ignore[misc]
3333 assert sorted (t .name for t in text_set .contents ) == sorted (
3434 f .name for f in test_files
3535 )
@@ -38,5 +38,5 @@ def test_list_dir_contents(
3838def test_put_contents_in_dir (
3939 file_names : ty .List [str ], test_files : ty .List [Path ], tmp_path : Path
4040) -> None :
41- text_dir = DirectoryOf [TextFile ].convert (SetOf [TextFile ](test_files ), cache_root = tmp_path / "cache" ) # type: ignore[misc]
41+ text_dir = DirectoryOf [TextFile ].convert (SetOf [TextFile ](test_files )) # type: ignore[misc]
4242 assert sorted (t .name for t in text_dir .contents ) == file_names
You can’t perform that action at this time.
0 commit comments