summaryrefslogtreecommitdiff
path: root/tests/micropython/viper_cond.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/viper_cond.py')
-rw-r--r--tests/micropython/viper_cond.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/micropython/viper_cond.py b/tests/micropython/viper_cond.py
index a168afce9..d31a5f3cf 100644
--- a/tests/micropython/viper_cond.py
+++ b/tests/micropython/viper_cond.py
@@ -6,6 +6,8 @@ def f():
pass
else:
print("not x", x)
+
+
f()
# using True as a conditional
@@ -14,6 +16,8 @@ def f():
x = True
if x:
print("x", x)
+
+
f()
# using an int as a conditional
@@ -22,4 +26,6 @@ def g():
y = 1
if y:
print("y", y)
+
+
g()