Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagocoutinho committed Aug 18, 2023
1 parent d7c4fc8 commit 657c20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def mmap(self, fd, length, offset):
assert self.fd == fd
return MemoryMap(self)

def select(self, readers, writers, other):
def select(self, readers, writers, other, timeout=None):
assert readers[0].fileno() == self.fd
return readers, writers, other

Expand Down

0 comments on commit 657c20b

Please sign in to comment.