Skip to content

Commit 1cb582f

Browse files
authored
test: modified test for missing bb_flag (python#25)
1 parent 7cab316 commit 1cb582f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tier2_test.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,14 +507,13 @@ def __add__(self, _): return "Hewwo!"
507507
def f(a):
508508
b = 1
509509
if a: b = A()
510-
print(b)
511510
return b+b
512511

513512

514513
for _ in range(63): f(0)
515-
516514
assert f(1) == "Hewwo!"
517-
515+
assert f(1) == "Hewwo!"
516+
assert f(0) == 2
518517
assert f(0) == 2
519518

520519
# As long as it doesn't crash, everything's good.

0 commit comments

Comments
 (0)