Skip to content

Commit 5a5c16d

Browse files
committed
fix FS tests
1 parent 2326ce2 commit 5a5c16d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/fast/test_filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def test_database_attach(self, tmp_path: Path, monkeypatch: pytest.MonkeyPatch):
172172
write_errors = intercept(monkeypatch, fsspec.implementations.local.LocalFileOpener, "write")
173173
conn.register_filesystem(fs)
174174
db_path_posix = str(PurePosixPath(tmp_path.as_posix()) / "hello.db")
175-
conn.execute(f"ATTACH 'file://{db_path_posix}'")
175+
conn.execute(f"ATTACH 'file:///{db_path_posix}'")
176176

177177
conn.execute("INSERT INTO hello.t VALUES (1)")
178178

0 commit comments

Comments
 (0)