fix(right-wing): match store_scores column names and value order to DB schema

This commit is contained in:
2026-05-25 00:01:31 +02:00
parent 84ec44e468
commit 80c68c0112
2 changed files with 8 additions and 8 deletions
@@ -177,7 +177,7 @@ class TestStoreScores:
con = duckdb.connect(tmp_duckdb_path)
try:
rows = con.execute(
"SELECT motion_id, stylistic_score, material_score "
"SELECT motion_id, stijl_extremiteit, materiele_impact "
"FROM extremity_scores_2d ORDER BY motion_id"
).fetchall()
assert len(rows) == 2
@@ -206,7 +206,7 @@ class TestStoreScores:
con = duckdb.connect(tmp_duckdb_path)
try:
rows = con.execute(
"SELECT stylistic_score, material_score FROM extremity_scores_2d WHERE motion_id = 1"
"SELECT stijl_extremiteit, materiele_impact FROM extremity_scores_2d WHERE motion_id = 1"
).fetchall()
assert rows[0] == (5, 5)
finally: