Skip to content

Commit a22ae92

Browse files
committed
fix(sqlalchemy-bigquery): update expected SQL in unit test_geography
1 parent 6c8417c commit a22ae92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/sqlalchemy-bigquery/tests/unit/test_geography.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ def test_geoalchemy2_core(faux_conn, last_query):
9999
last_query(
100100
"SELECT `lake`.`name` \n"
101101
"FROM `lake` \n"
102-
"WHERE ST_Contains(`lake`.`geog`, ST_GeogFromText(%(ST_GeogFromText_1:STRING)s))",
103-
{"ST_GeogFromText_1": "POINT(4 1)"},
102+
"WHERE ST_Contains(`lake`.`geog`, %(ST_Contains_1:STRING)s)",
103+
{"ST_Contains_1": "POINT(4 1)"},
104104
)
105105

106106
try:

0 commit comments

Comments
 (0)