Commit 36d85bbc authored by Stefan Behnel's avatar Stefan Behnel

repair test assertion after changing exception text

parent 3bafb174
......@@ -175,7 +175,7 @@ def test_broken_anext():
>>> testfunc = test_broken_anext()
>>> try: run_async(testfunc())
... except TypeError as exc:
... assert ' int ' in str(exc)
... assert ' int' in str(exc)
... else:
... print("NOT RAISED!")
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment