summaryrefslogtreecommitdiff
path: root/tests/dbshell/test_sqlite.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dbshell/test_sqlite.py')
-rw-r--r--tests/dbshell/test_sqlite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dbshell/test_sqlite.py b/tests/dbshell/test_sqlite.py
index 570230f62d..ea4bdd62e1 100644
--- a/tests/dbshell/test_sqlite.py
+++ b/tests/dbshell/test_sqlite.py
@@ -13,7 +13,7 @@ class SqliteDbshellCommandTestCase(SimpleTestCase):
def test_path_name(self):
self.assertEqual(
self.settings_to_cmd_args_env({'NAME': Path('test.db.sqlite3')}),
- (['sqlite3', 'test.db.sqlite3'], None),
+ (['sqlite3', Path('test.db.sqlite3')], None),
)
def test_parameters(self):