tests: Fix default arg test.

This commit is contained in:
Damien George 2014-06-08 00:12:32 +01:00
parent b4efac14cd
commit c06427c019
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
def fun1(val=5):
print(5)
print(val)
fun1()
fun1(10)