summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_wave.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_wave.py')
-rw-r--r--Lib/test/test_wave.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py
index a7a5e24..e2dc688 100644
--- a/Lib/test/test_wave.py
+++ b/Lib/test/test_wave.py
@@ -13,7 +13,7 @@ nframes = 100
testfile = tempfile.mktemp()
-f = wave.open(testfile, 'w')
+f = wave.open(testfile, 'wb')
f.setnchannels(nchannels)
f.setsampwidth(sampwidth)
f.setframerate(framerate)
@@ -22,7 +22,7 @@ output = '\0' * nframes * nchannels * sampwidth
f.writeframes(output)
f.close()
-f = wave.open(testfile, 'r')
+f = wave.open(testfile, 'rb')
check(nchannels == f.getnchannels(), "nchannels")
check(sampwidth == f.getsampwidth(), "sampwidth")
check(framerate == f.getframerate(), "framerate")