Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 90467e3

Browse files
committed
fix: clean up redundant test in dataframe_test
1 parent ba04586 commit 90467e3

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

tests/system/small/test_dataframe.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5902,19 +5902,6 @@ def test_to_gbq_table_labels(scalars_df_index):
59025902
assert table.labels["test"] == "labels"
59035903

59045904

5905-
def test_to_gbq_obj_ref_persists(session):
5906-
# Test that saving and loading an Object Reference retains its dtype
5907-
bdf = session.from_glob_path(
5908-
"gs://cloud-samples-data/vision/ocr/*.jpg", name="uris"
5909-
).head(1)
5910-
5911-
destination_table = "bigframes-dev.bigframes_tests_sys.test_obj_ref_persistence"
5912-
bdf.to_gbq(destination_table, if_exists="replace")
5913-
5914-
loaded_df = session.read_gbq(destination_table)
5915-
assert loaded_df["uris"].dtype == dtypes.OBJ_REF_DTYPE
5916-
5917-
59185905
def test_dataframe_melt_multiindex(session):
59195906
# Tests that `melt` operations via count do not cause MultiIndex drops in Arrow
59205907
df = pd.DataFrame({"A": [1], "B": ["string"], "C": [3]})

0 commit comments

Comments
 (0)