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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py
index 1a6ff5c..85f5566 100644
--- a/Lib/test/test_wave.py
+++ b/Lib/test/test_wave.py
@@ -16,7 +16,7 @@ f.setnchannels(nchannels)
f.setsampwidth(sampwidth)
f.setframerate(framerate)
f.setnframes(nframes)
-output = '\0' * nframes * nchannels * sampwidth
+output = b'\0' * nframes * nchannels * sampwidth
f.writeframes(output)
f.close()