Skip to content

Commit

Permalink
Fixed tests for Python 3.6, again
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Aug 15, 2020
1 parent fb4cdb7 commit 7a64be7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_saved_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

@pytest.fixture
def db_path(tmpdir):
data = tmpdir / "data.db"
data = str(tmpdir / "data.db")
sqlite3.connect(data).execute("vacuum")
yield str(data)
yield data


@pytest.fixture
Expand Down

0 comments on commit 7a64be7

Please sign in to comment.