Blob Blame History Raw
From ca1bd4f5455aaea45005acba5fa6a56f98db4ed6 Mon Sep 17 00:00:00 2001
From: Lumir Balhar <lbalhar@redhat.com>
Date: Wed, 8 Jun 2022 10:58:16 +0200
Subject: [PATCH] Fix test compatibility with Python 3.11

---
 ipywidgets/widgets/tests/test_interaction.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ipywidgets/widgets/tests/test_interaction.py b/ipywidgets/widgets/tests/test_interaction.py
index 7d44098..9614e45 100644
--- a/ipywidgets/widgets/tests/test_interaction.py
+++ b/ipywidgets/widgets/tests/test_interaction.py
@@ -703,7 +703,7 @@ def test_multiple_selection():
 
 def test_interact_noinspect():
     a = u'hello'
-    c = interactive(print, a=a)
+    c = interactive(dict, a=a)
     w = c.children[0]
     check_widget(w,
         cls=widgets.Text,
-- 
2.36.1