Skip to content

Commit fd72b4e

Browse files
authored
test: fix multimodal tests (#1954)
* test: fix multimodal tests * fix
1 parent 0468a4d commit fd72b4e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/system/small/blob/test_properties.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_blob_authorizer(images_mm_df: bpd.DataFrame, bq_connection: str):
4040

4141
def test_blob_version(images_mm_df: bpd.DataFrame):
4242
actual = images_mm_df["blob_col"].blob.version().to_pandas()
43-
expected = pd.Series(["1739574332294150", "1739574332271343"], name="version")
43+
expected = pd.Series(["1753907851152593", "1753907851111538"], name="version")
4444

4545
pd.testing.assert_series_equal(
4646
actual, expected, check_dtype=False, check_index_type=False
@@ -55,13 +55,13 @@ def test_blob_metadata(images_mm_df: bpd.DataFrame):
5555
'{"content_type":"image/jpeg",'
5656
'"md5_hash":"e130ad042261a1883cd2cc06831cf748",'
5757
'"size":338390,'
58-
'"updated":1739574332000000}'
58+
'"updated":1753907851000000}'
5959
),
6060
(
6161
'{"content_type":"image/jpeg",'
6262
'"md5_hash":"e2ae3191ff2b809fd0935f01a537c650",'
6363
'"size":43333,'
64-
'"updated":1739574332000000}'
64+
'"updated":1753907851000000}'
6565
),
6666
],
6767
name="metadata",
@@ -105,8 +105,8 @@ def test_blob_updated(images_mm_df: bpd.DataFrame):
105105
actual = images_mm_df["blob_col"].blob.updated().to_pandas()
106106
expected = pd.Series(
107107
[
108-
pd.Timestamp("2025-02-14 23:05:32", tz="UTC"),
109-
pd.Timestamp("2025-02-14 23:05:32", tz="UTC"),
108+
pd.Timestamp("2025-07-30 20:37:31", tz="UTC"),
109+
pd.Timestamp("2025-07-30 20:37:31", tz="UTC"),
110110
],
111111
name="updated",
112112
)

0 commit comments

Comments
 (0)