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

Commit 15eb28d

Browse files
committed
test: fix failed testcase
1 parent 2140b0f commit 15eb28d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/system/small/test_anywidget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ def test_repr_mimebundle_should_fallback_to_html_if_anywidget_is_unavailable(
917917
"display.repr_mode", "anywidget", "display.max_rows", 2
918918
):
919919
# Mock the ANYWIDGET_INSTALLED flag to simulate absence of anywidget
920-
with mock.patch("bigframes.display.anywidget.ANYWIDGET_INSTALLED", False):
920+
with mock.patch("bigframes.display.anywidget._ANYWIDGET_INSTALLED", False):
921921
bundle = paginated_bf_df._repr_mimebundle_()
922922
assert "application/vnd.jupyter.widget-view+json" not in bundle
923923
assert "text/html" in bundle

0 commit comments

Comments
 (0)