Skip to content

Commit c782fda

Browse files
committed
new line bug fix
1 parent 3648972 commit c782fda

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ def with_test_cache(test_files_directory, request):
297297
openml.config.set_root_cache_directory(_root_cache_directory)
298298
if tmp_cache.exists():
299299
shutil.rmtree(tmp_cache)
300+
300301

301-
302302
@pytest.fixture
303303
def static_cache_dir():
304304
return Path(__file__).parent / "files"
@@ -308,4 +308,4 @@ def workdir(tmp_path):
308308
original_cwd = Path.cwd()
309309
os.chdir(tmp_path)
310310
yield tmp_path
311-
os.chdir(original_cwd)
311+
os.chdir(original_cwd)

0 commit comments

Comments
 (0)