Skip to content

Commit

Permalink
fix: stringified dir name
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Aug 26, 2023
1 parent 8a67d3c commit 622e34d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def disable_destination_modification(monkeypatch, request):
def local_file_config() -> Dict[str, str]:
# create a file "myfile" in "mydir" in temp directory
tmp_dir = tempfile.TemporaryDirectory()
test = os.path.join(str(tmp_dir), "test.duckdb")
test = os.path.join(str(tmp_dir.name), "test.duckdb")

# f1.write_text("text to myfile")
yield {"destination_path": test}
Expand Down

0 comments on commit 622e34d

Please sign in to comment.