diff options
| -rw-r--r-- | testing/tests/perf/test_sync.py | 10 | 
1 files changed, 2 insertions, 8 deletions
diff --git a/testing/tests/perf/test_sync.py b/testing/tests/perf/test_sync.py index 0b48a0b9..7b3c4bf0 100644 --- a/testing/tests/perf/test_sync.py +++ b/testing/tests/perf/test_sync.py @@ -1,17 +1,11 @@  import pytest -from twisted.internet.defer import gatherResults - +@pytest.inlineCallbacks  def load_up(client, amount, payload): -    deferreds = []      # create a bunch of local documents      for i in xrange(amount): -        d = client.create_doc({'content': payload}) -        deferreds.append(d) -    d = gatherResults(deferreds) -    d.addCallback(lambda _: None) -    return d +        yield client.create_doc({'content': payload})  def create_upload(uploads, size):  | 
