From 4e4a9324457a06f149106e3d7e9f8ef25e23ba64 Mon Sep 17 00:00:00 2001 From: Tsuyoshi Hombashi Date: Sun, 10 Sep 2023 20:31:51 +0900 Subject: [PATCH] Fix a test case --- test/test_simplesqlite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_simplesqlite.py b/test/test_simplesqlite.py index cd39abd..7d73f6c 100644 --- a/test/test_simplesqlite.py +++ b/test/test_simplesqlite.py @@ -86,7 +86,7 @@ def test_normal_connect_kwargs(self, tmpdir): p = tmpdir.join("test.sqlite3") db_path = str(p) con = SimpleSQLite(db_path, timeout=10) - assert con.database_path is None + assert con.database_path == db_path assert con.connection @pytest.mark.parametrize(