summaryrefslogtreecommitdiff
path: root/tests/extmod/uhashlib_md5.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/uhashlib_md5.py')
-rw-r--r--tests/extmod/uhashlib_md5.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extmod/uhashlib_md5.py b/tests/extmod/uhashlib_md5.py
index 10b6d054e..07d5f3169 100644
--- a/tests/extmod/uhashlib_md5.py
+++ b/tests/extmod/uhashlib_md5.py
@@ -16,6 +16,6 @@ except AttributeError:
print("SKIP")
raise SystemExit
-md5 = hashlib.md5(b'hello')
-md5.update(b'world')
+md5 = hashlib.md5(b"hello")
+md5.update(b"world")
print(md5.digest())