summaryrefslogtreecommitdiff
path: root/tests/extmod/urandom_extra_float.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/urandom_extra_float.py')
-rw-r--r--tests/extmod/urandom_extra_float.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/extmod/urandom_extra_float.py b/tests/extmod/urandom_extra_float.py
index f665fd18a..65918da13 100644
--- a/tests/extmod/urandom_extra_float.py
+++ b/tests/extmod/urandom_extra_float.py
@@ -10,14 +10,14 @@ except ImportError:
try:
random.randint
except AttributeError:
- print('SKIP')
+ print("SKIP")
raise SystemExit
-print('random')
+print("random")
for i in range(50):
assert 0 <= random.random() < 1
-print('uniform')
+print("uniform")
for i in range(50):
assert 0 <= random.uniform(0, 4) <= 4
assert 2 <= random.uniform(2, 6) <= 6