-
Type: Bug
-
Resolution: Done
-
Priority: Trivial - P5
-
Affects Version/s: None
-
Component/s: None
-
None
[2017/03/31 14:18:56.953] WARNING: ********************************************************************** [2017/03/31 14:18:56.953] File "tutorial-tornado.rst", line 563, in after-inserting-2000-docs [2017/03/31 14:18:56.953] Failed example: [2017/03/31 14:18:56.953] IOLoop.current().run_sync(use_count_command) [2017/03/31 14:18:56.953] Expected: [2017/03/31 14:18:56.953] response: {'n': 1000, 'ok': 1.0, ...} [2017/03/31 14:18:56.953] Got: [2017/03/31 14:18:56.953] response: {'n': 1000, 'ok': 1.0} [2017/03/31 14:18:58.523] WARNING: ********************************************************************** [2017/03/31 14:18:58.523] File "tutorial-asyncio.rst", line 413, in after-inserting-2000-docs [2017/03/31 14:18:58.523] Failed example: [2017/03/31 14:18:58.523] loop.run_until_complete(use_count_command()) [2017/03/31 14:18:58.523] Expected: [2017/03/31 14:18:58.523] response: {'n': 1000, 'ok': 1.0, ...} [2017/03/31 14:18:58.523] Got: [2017/03/31 14:18:58.523] response: {'n': 1000, 'ok': 1.0}
Instead of this:
{'n': 1000, 'ok': 1.0, ...}
I think you want this:
{'n': 1000, 'ok': 1.0...}