Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix-up test.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Oct 24, 2023
1 parent 13783ff commit 36559c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/storage/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def test_select_one_missing(
@defer.inlineCallbacks
def test_select_list(self) -> Generator["defer.Deferred[object]", object, None]:
self.mock_txn.rowcount = 3
self.mock_txn.__iter__ = Mock(return_value=iter([(1,), (2,), (3,)]))
self.mock_txn.fetchall.return_value = [(1,), (2,), (3,)]
self.mock_txn.description = (("colA", None, None, None, None, None, None),)

ret = yield defer.ensureDeferred(
Expand Down

0 comments on commit 36559c8

Please sign in to comment.