Skip to content

Commit

Permalink
test: update the results of test based on change to hacker news data (#…
Browse files Browse the repository at this point in the history
…1949)

* test: update the results of test based on change to hacker news data

* Update tests/system/test_client.py

---------

Co-authored-by: Lingqing Gan <[email protected]>
  • Loading branch information
chalmerlowe and Linchin authored Jun 12, 2024
1 parent bfdeb3f commit 19bef8d
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions tests/system/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1788,20 +1788,35 @@ def test_dbapi_fetch_w_bqstorage_client_large_result_set(self):
# in the sorted order.

expected_data = [
[
("by", "pg"),
("id", 1),
(
"timestamp",
datetime.datetime(
2006, 10, 9, 18, 21, 51, tzinfo=datetime.timezone.utc
),
),
],
[
("by", "phyllis"),
("id", 2),
("timestamp", datetime.datetime(2006, 10, 9, 18, 30, 28, tzinfo=UTC)),
(
"timestamp",
datetime.datetime(
2006, 10, 9, 18, 30, 28, tzinfo=datetime.timezone.utc
),
),
],
[
("by", "phyllis"),
("id", 3),
("timestamp", datetime.datetime(2006, 10, 9, 18, 40, 33, tzinfo=UTC)),
],
[
("by", "onebeerdave"),
("id", 4),
("timestamp", datetime.datetime(2006, 10, 9, 18, 47, 42, tzinfo=UTC)),
(
"timestamp",
datetime.datetime(
2006, 10, 9, 18, 40, 33, tzinfo=datetime.timezone.utc
),
),
],
]

Expand Down

0 comments on commit 19bef8d

Please sign in to comment.