Skip to content

Commit

Permalink
fix borked tests
Browse files Browse the repository at this point in the history
  • Loading branch information
universalmind303 committed Nov 20, 2024
1 parent d1c97e2 commit b011517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sql/test_aggs.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_aggs_sql():
("count(*) as cnt", "cnt > 2", {"cnt": [3, 5]}),
("count(*) as cnt", "count(*) > 2", {"cnt": [3, 5]}),
("count(*)", "count(*) > 2", {"count": [3, 5]}),
("count(*) as cnt", "sum(values) > 10", {"count": [3, 5]}),
("count(*) as cnt", "sum(values) > 10", {"cnt": [3, 5]}),
("sum(values), count(*)", "id > 1", {"values": [10.0, 29.5], "count": [2, 5]}),
],
)
Expand Down

0 comments on commit b011517

Please sign in to comment.