summaryrefslogtreecommitdiffstats
path: root/contrib/python/prompt-toolkit/py3/tests/test_widgets.py
diff options
context:
space:
mode:
authorAlexSm <[email protected]>2023-12-27 23:31:58 +0100
committerGitHub <[email protected]>2023-12-27 23:31:58 +0100
commitd67bfb4b4b7549081543e87a31bc6cb5c46ac973 (patch)
tree8674f2f1570877cb653e7ddcff37ba00288de15a /contrib/python/prompt-toolkit/py3/tests/test_widgets.py
parent1f6bef05ed441c3aa2d565ac792b26cded704ac7 (diff)
Import libs 4 (#758)
Diffstat (limited to 'contrib/python/prompt-toolkit/py3/tests/test_widgets.py')
-rw-r--r--contrib/python/prompt-toolkit/py3/tests/test_widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/prompt-toolkit/py3/tests/test_widgets.py b/contrib/python/prompt-toolkit/py3/tests/test_widgets.py
index 1fc8ae43981..ee7745a2d01 100644
--- a/contrib/python/prompt-toolkit/py3/tests/test_widgets.py
+++ b/contrib/python/prompt-toolkit/py3/tests/test_widgets.py
@@ -10,7 +10,7 @@ def _to_text(button: Button) -> str:
return fragment_list_to_text(control.text())
-def test_defaulf_button():
+def test_default_button():
button = Button("Exit")
assert _to_text(button) == "< Exit >"