Skip to content

Commit

Permalink
fixed test returning
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewG0R committed Jun 27, 2022
1 parent 3e68b51 commit 2b3b558
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ python: |
class c:
field = 1
def test(head, tail):
def test():
o = c()
o.field = 2
return o.field == 2
return True
return test()

0 comments on commit 2b3b558

Please sign in to comment.