diff options
Diffstat (limited to 'config/mozunit')
-rw-r--r-- | config/mozunit/mozunit/mozunit.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/config/mozunit/mozunit/mozunit.py b/config/mozunit/mozunit/mozunit.py index 28009425b6..4bd250647d 100644 --- a/config/mozunit/mozunit/mozunit.py +++ b/config/mozunit/mozunit/mozunit.py @@ -166,10 +166,11 @@ class _MockBaseOpen(object): self, name, mode="r", - buffering=None, + buffering=-1, encoding=None, - newline=None, errors=None, + newline=None, + closefd=True, opener=None, ): # open() can be called with an integer "name" (i.e. a file descriptor). @@ -181,8 +182,9 @@ class _MockBaseOpen(object): mode=mode, buffering=buffering, encoding=encoding, - newline=newline, errors=errors, + newline=newline, + closefd=closefd, opener=opener, ) # buffering is ignored. |