Skip to content

Commit 4e4a932

Browse files
committed
Fix a test case
1 parent cb03989 commit 4e4a932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_simplesqlite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def test_normal_connect_kwargs(self, tmpdir):
8686
p = tmpdir.join("test.sqlite3")
8787
db_path = str(p)
8888
con = SimpleSQLite(db_path, timeout=10)
89-
assert con.database_path is None
89+
assert con.database_path == db_path
9090
assert con.connection
9191

9292
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)