diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2018-12-22 23:11:36 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-12-22 18:52:54 -0500 |
| commit | e626a3f993fc0581a3e0770a3930ac1fc20196cb (patch) | |
| tree | f8a836026eb9119d565e3fda8a8420b62f7aa6d1 /tests/test_runner | |
| parent | 7534e43497fed7714910ccec2a6e8acade8263ca (diff) | |
Renamed Sqlite and Sqlite3 references to SQLite.
Diffstat (limited to 'tests/test_runner')
| -rw-r--r-- | tests/test_runner/tests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py index be6c8b9fa0..c95bd8f106 100644 --- a/tests/test_runner/tests.py +++ b/tests/test_runner/tests.py @@ -240,14 +240,13 @@ class Ticket17477RegressionTests(AdminScriptTestCase): self.assertNoOutput(err) -class Sqlite3InMemoryTestDbs(TransactionTestCase): +class SQLiteInMemoryTestDbs(TransactionTestCase): multi_db = True available_apps = ['test_runner'] @unittest.skipUnless(all(db.connections[conn].vendor == 'sqlite' for conn in db.connections), "This is an sqlite-specific issue") def test_transaction_support(self): - """Ticket #16329: sqlite3 in-memory test databases""" for option_key, option_value in ( ('NAME', ':memory:'), ('TEST', {'NAME': ':memory:'})): tested_connections = db.ConnectionHandler({ |
