Skip to content

Commit 977b9b7

Browse files
committed
Fixed test_secret_store.py
1 parent e2544cd commit 977b9b7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/unit/test_secret_store.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import sqlite3
2+
from pathlib import Path
23

34
import pytest
45

@@ -9,6 +10,11 @@
910
)
1011

1112

13+
@pytest.fixture
14+
def sample_file(tmp_path: Path) -> Path:
15+
return tmp_path / "sample_database.db"
16+
17+
1218
def test_no_database_file(secrets):
1319
assert not secrets.db_file.exists()
1420

0 commit comments

Comments
 (0)