Commit e6d183b1 authored by Yusei Tahara's avatar Yusei Tahara

coveralls complains about a `pass` in DummyConnection, use `return` instead.

parent 7f34907a
......@@ -1136,7 +1136,7 @@ class CPickleCacheTests(PickleCacheTests):
class DummyConnection(object):
def register(self, obj):
pass
return
dummy_connection = DummyConnection()
......
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