Merge pull request #6205 from wRAR/fix-pypy-tests

Remove a defer.returnValue call.
This commit is contained in:
Mikhail Korobov 2024-01-12 22:50:41 +05:00 committed by GitHub
commit b7cf30a48e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2299,7 +2299,7 @@ class BatchDeliveriesTest(FeedExportTestBase):
content[feed["format"]].append(file.read_bytes())
finally:
self.tearDown()
defer.returnValue(content)
return content
@defer.inlineCallbacks
def assertExportedJsonLines(self, items, rows, settings=None):