Skip to content

Commit 471ae9f

Browse files
Fix tests on Windows
1 parent c1926a6 commit 471ae9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_io.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ def close(self):
10461046
class TestIOCTypes(unittest.TestCase):
10471047
def setUp(self):
10481048
_io = import_helper.import_module("_io")
1049-
self.types = (
1049+
self.types = [
10501050
_io.BufferedRWPair,
10511051
_io.BufferedRandom,
10521052
_io.BufferedReader,
@@ -1061,7 +1061,7 @@ def setUp(self):
10611061
_io._IOBase,
10621062
_io._RawIOBase,
10631063
_io._TextIOBase,
1064-
)
1064+
]
10651065
if sys.platform == "win32":
10661066
self.types.append(_io._WindowsConsoleIO)
10671067
self._io = _io

0 commit comments

Comments
 (0)