diff options
Diffstat (limited to 'tests/extmod/json_dump_iobase.py')
-rw-r--r-- | tests/extmod/json_dump_iobase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/json_dump_iobase.py b/tests/extmod/json_dump_iobase.py index 94d317b87..81105e36d 100644 --- a/tests/extmod/json_dump_iobase.py +++ b/tests/extmod/json_dump_iobase.py @@ -18,7 +18,7 @@ class S(io.IOBase): def write(self, buf): if type(buf) == bytearray: - # uPy passes a bytearray, CPython passes a str + # MicroPython passes a bytearray, CPython passes a str buf = str(buf, "ascii") self.buf += buf return len(buf) |