aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-11 18:29:55 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-11 18:32:28 +0200
commitb689a85b9df4c4fa64f243e27c7498693d0496a4 (patch)
tree94f5405c1738d3337ed0af02e513650d1e0d0457 /test
parentsqlite: rename SQL schema variables (diff)
downloadcimple-b689a85b9df4c4fa64f243e27c7498693d0496a4.tar.gz
cimple-b689a85b9df4c4fa64f243e27c7498693d0496a4.zip
sqlite: make some identifiers more readable
Diffstat (limited to 'test')
-rw-r--r--test/py/lib/db.py2
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()