diff options
Diffstat (limited to '_pytest/test_everything.py')
-rw-r--r-- | _pytest/test_everything.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/_pytest/test_everything.py b/_pytest/test_everything.py index fd29850..039be54 100644 --- a/_pytest/test_everything.py +++ b/_pytest/test_everything.py @@ -33,13 +33,15 @@ def test_process_message(monkeypatch, realish_eventrouter, mock_websocket): except ProcessNotImplemented as e: notimplemented.add(str(e)) - if len(notimplemented) > 0: print "####################" print sorted(notimplemented) print "####################" #assert False + print eventrouter.queue + assert False + |