summaryrefslogtreecommitdiff
path: root/dev-python/picobox/files/picobox-2.2.0-fix-py3.10.patch
blob: 74c6f9b2193f37063ebe9b175801ba13b1a27262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff --git a/tests/test_box.py b/tests/test_box.py
index c1c1ca2..d576086 100644
--- a/tests/test_box.py
+++ b/tests/test_box.py
@@ -402,7 +402,7 @@ def test_box_pass_unexpected_argument(boxclass):
     with pytest.raises(TypeError) as excinfo:
         fn(1, 2)
 
-    assert str(excinfo.value) == "fn() got an unexpected keyword argument 'd'"
+    assert "fn() got an unexpected keyword argument 'd'" in str(excinfo.value)
 
 
 def test_box_pass_keyerror(boxclass):
diff --git a/tests/test_stack.py b/tests/test_stack.py
index 725d378..10129b3 100644
--- a/tests/test_stack.py
+++ b/tests/test_stack.py
@@ -472,7 +472,7 @@ def test_box_pass_unexpected_argument(boxclass, teststack):
         with pytest.raises(TypeError) as excinfo:
             fn(1, 2)
 
-    assert str(excinfo.value) == "fn() got an unexpected keyword argument 'd'"
+    assert "fn() got an unexpected keyword argument 'd'" in str(excinfo.value)
 
 
 def test_box_pass_keyerror(boxclass, teststack):