We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa73c4 commit 7072c87Copy full SHA for 7072c87
tests/test_verbosity.py
@@ -48,19 +48,19 @@ def test_geTrue():
48
# >>>>>>>>>> Raising <<<<<<<<<< #
49
def test_ltRaise():
50
with pytest.raises(ValueError):
51
- Verbosity(0) < Exception()
+ return Verbosity(0) < Exception()
52
53
54
def test_leRaise():
55
56
- Verbosity(0) <= Exception()
+ return Verbosity(0) <= Exception()
57
58
59
def test_gtRaise():
60
61
- Verbosity(1) > Exception()
+ return Verbosity(1) > Exception()
62
63
64
def test_geRaise():
65
66
- Verbosity(1) >= Exception()
+ return Verbosity(1) >= Exception()
0 commit comments