summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtko/parse.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tko/parse.py b/tko/parse.py
index 27d18213..90a75014 100755
--- a/tko/parse.py
+++ b/tko/parse.py
@@ -130,11 +130,11 @@ def parse_one(db, jobname, path, reparse, mail_on_failure):
(test.testname, test.subdir))
for test_idx in old_tests.itervalues():
where = {'test_idx' : test_idx}
- db.delete('iteration_result', where)
- db.delete('iteration_attributes', where)
- db.delete('test_attributes', where)
- db.delete('test_labels_tests', {'test_id': test_idx})
- db.delete('tests', where)
+ db.delete('tko_iteration_result', where)
+ db.delete('tko_iteration_attributes', where)
+ db.delete('tko_test_attributes', where)
+ db.delete('tko_test_labels_tests', {'test_id': test_idx})
+ db.delete('tko_tests', where)
# check for failures
message_lines = [""]