diff options
Diffstat (limited to '')
-rw-r--r-- | test/py/lib/db.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/lib/db.py b/test/py/lib/db.py index 9fddbf5..133a627 100644 --- a/test/py/lib/db.py +++ b/test/py/lib/db.py @@ -26,5 +26,5 @@ class Database: def get_all_runs(self): with self.get_cursor() as cur: - cur.execute('SELECT * FROM cimple_runs_readable') + cur.execute('SELECT * FROM cimple_runs_view') return cur.fetchall() |