summaryrefslogtreecommitdiff
path: root/tests/unit/misc/test_sql.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/misc/test_sql.py')
-rw-r--r--tests/unit/misc/test_sql.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/unit/misc/test_sql.py b/tests/unit/misc/test_sql.py
index 211280a6b..92bede511 100644
--- a/tests/unit/misc/test_sql.py
+++ b/tests/unit/misc/test_sql.py
@@ -227,11 +227,6 @@ def test_delete(qtbot):
assert not list(table)
-def test_delete_optional(qtbot):
- table = sql.SqlTable('Foo', ['name', 'val'])
- table.delete('name', 'doesnotexist', optional=True)
-
-
def test_len():
table = sql.SqlTable('Foo', ['name', 'val', 'lucky'])
assert len(table) == 0