Skip to content

Commit 928f1db

Browse files
committed
test: fix failed testcase
1 parent 15993a3 commit 928f1db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/small/test_anywidget.py

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

0 commit comments

Comments
 (0)