8000 test: update the results of test based on change to hacker news data … · googleapis/python-bigquery@19bef8d · GitHub
[go: up one dir, main page]

Skip to content

Commit 19bef8d

Browse files
chalmerloweLinchin
andauthored
test: update the results of test based on change to hacker news data (#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 <lingqing.gan@gmail.com>
1 parent bfdeb3f commit 19bef8d

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

tests/system/test_client.py

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1788,20 +1788,35 @@ def test_dbapi_fetch_w_bqstorage_client_large_result_set(self):
17881788
# in the sorted order.
17891789

17901790
expected_data = [
1791+
[
1792+
("by", "pg"),
1793+
("id", 1),
1794+
(
1795+
"timestamp",
1796+
datetime.datetime(
1797+
2006, 10, 9, 18, 21, 51, tzinfo=datetime.timezone.utc
1798+
),
1799+
),
1800+
],
17911801
[
17921802
("by", "phyllis"),
17931803
("id", 2),
1794-
("timestamp", datetime.datetime(2006, 10, 9, 18, 30, 28, tzinfo=UTC)),
1804+
(
1805+
"timestamp",
1806+
datetime.datetime(
1807+
2006, 10, 9, 18, 30, 28, tzinfo=datetime.timezone.utc
1808+
),
1809+
),
17951810
],
17961811
[
17971812
("by", "phyllis"),
17981813
("id", 3),
1799-
("timestamp", datetime.datetime(2006, 10, 9, 18, 40, 33, tzinfo=UTC)),
1800-
],
1801-
[
1802-
("by", "onebeerdave"),
1803-
("id", 4),
1804-
("timestamp", datetime.datetime(2006, 10, 9, 18, 47, 42, tzinfo=UTC)),
1814+
(
1815+
"timestamp",
1816+
datetime.datetime(
1817+
2006, 10, 9, 18, 40, 33, tzinfo=datetime.timezone.utc
1818+
),
1819+
),
18051820
],
18061821
]
18071822

0 commit comments

Comments
 (0)
0