|
 |
bae39c1 |
From ca1bd4f5455aaea45005acba5fa6a56f98db4ed6 Mon Sep 17 00:00:00 2001
|
|
 |
bae39c1 |
From: Lumir Balhar <lbalhar@redhat.com>
|
|
 |
bae39c1 |
Date: Wed, 8 Jun 2022 10:58:16 +0200
|
|
 |
bae39c1 |
Subject: [PATCH] Fix test compatibility with Python 3.11
|
|
 |
bae39c1 |
|
|
 |
bae39c1 |
---
|
|
 |
bae39c1 |
ipywidgets/widgets/tests/test_interaction.py | 2 +-
|
|
 |
bae39c1 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
 |
bae39c1 |
|
|
 |
bae39c1 |
diff --git a/ipywidgets/widgets/tests/test_interaction.py b/ipywidgets/widgets/tests/test_interaction.py
|
|
 |
bae39c1 |
index 7d44098..9614e45 100644
|
|
 |
bae39c1 |
--- a/ipywidgets/widgets/tests/test_interaction.py
|
|
 |
bae39c1 |
+++ b/ipywidgets/widgets/tests/test_interaction.py
|
|
 |
bae39c1 |
@@ -703,7 +703,7 @@ def test_multiple_selection():
|
|
 |
bae39c1 |
|
|
 |
bae39c1 |
def test_interact_noinspect():
|
|
 |
bae39c1 |
a = u'hello'
|
|
 |
bae39c1 |
- c = interactive(print, a=a)
|
|
 |
bae39c1 |
+ c = interactive(dict, a=a)
|
|
 |
bae39c1 |
w = c.children[0]
|
|
 |
bae39c1 |
check_widget(w,
|
|
 |
bae39c1 |
cls=widgets.Text,
|
|
 |
bae39c1 |
--
|
|
 |
bae39c1 |
2.36.1
|
|
 |
bae39c1 |
|