summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/fun-defargs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/fun-defargs.py')
-rw-r--r--tests/basics/fun-defargs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/fun-defargs.py b/tests/basics/fun-defargs.py
index 0666b8c494..ed25f5739d 100644
--- a/tests/basics/fun-defargs.py
+++ b/tests/basics/fun-defargs.py
@@ -1,5 +1,5 @@
def fun1(val=5):
- print(5)
+ print(val)
fun1()
fun1(10)