summaryrefslogtreecommitdiff
path: root/test/sql/test_query.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r--test/sql/test_query.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py
index b3d728ab3..005693402 100644
--- a/test/sql/test_query.py
+++ b/test/sql/test_query.py
@@ -1202,7 +1202,7 @@ class CompoundTest(fixtures.TablesTest):
t2.c.col2.in_(["t2col2r2", "t2col2r3"]),
),
)
- u = union(s1, s2, order_by=["col3", "col4"])
+ u = union(s1, s2).order_by("col3", "col4")
wanted = [
("aaa", "aaa"),
@@ -1225,7 +1225,7 @@ class CompoundTest(fixtures.TablesTest):
t2.c.col2.in_(["t2col2r2", "t2col2r3"]),
),
)
- u = union(s1, s2, order_by=["col3", "col4"])
+ u = union(s1, s2).order_by("col3", "col4")
wanted = [
("aaa", "aaa"),