Skip to content

Commit e898635

Browse files
committed
Update test
1 parent 58a3a77 commit e898635

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/test_module.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ def test_module_methods():
55
obfuscate = python_obfuscator.obfuscator()
66

77
code = """
8-
def add(x, y):
9-
\treturn x+y
10-
assert add(10,10) == 20
11-
assert add(0,0) == 0
8+
v1 = 0
9+
v2 = 0
10+
v4 = 10
11+
assert v4 + v4 == 20
12+
assert v1 + v2 == 0
1213
""".replace(
1314
" ", ""
1415
)

0 commit comments

Comments
 (0)