Skip to content

Commit 65770f3

Browse files
1 parent 5a2baa6 commit 65770f3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

‎tests/system/small/test_dataframe.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
import bigframes._config.display_options as display_options
3131
import bigframes.core.indexes as bf_indexes
3232
import bigframes.dataframe as dataframe
33+
import bigframes.dtypes as dtypes
3334
import bigframes.pandas as bpd
3435
import bigframes.series as series
35-
import bigframes.dtypes as dtypes
3636
from tests.system.utils import (
3737
assert_dfs_equivalent,
3838
assert_pandas_df_equal,
@@ -4595,9 +4595,7 @@ def test_df_drop_duplicates_w_json(json_df, keep):
45954595
)
45964596

45974597
pd_df = json_pandas_df.drop_duplicates(keep=keep)
4598-
pd_df["json_col"] = pd_df["json_col"].astype(
4599-
dtypes.JSON_DTYPE
4600-
)
4598+
pd_df["json_col"] = pd_df["json_col"].astype(dtypes.JSON_DTYPE)
46014599
pd.testing.assert_frame_equal(
46024600
pd_df,
46034601
bf_df,

0 commit comments

Comments
 (0)