Skip to content

Commit 64acb52

Browse files
remove print statements (#1372)
1 parent f4ec2cc commit 64acb52

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

qualtran/bloqs/arithmetic/comparison_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ def test_clineardepthgreaterthan_classical_action_unsigned(ctrl, dtype, bitsize)
338338
cb = b.decompose_bloq()
339339
for c, target in itertools.product(range(2), repeat=2):
340340
for (x, y) in itertools.product(range(2**bitsize), repeat=2):
341-
print(f'{c=} {target=} {x=} {y=}')
342341
assert b.call_classically(ctrl=c, a=x, b=y, target=target) == cb.call_classically(
343342
ctrl=c, a=x, b=y, target=target
344343
)
@@ -351,7 +350,6 @@ def test_clineardepthgreaterthan_classical_action_signed(ctrl, bitsize):
351350
cb = b.decompose_bloq()
352351
for c, target in itertools.product(range(2), repeat=2):
353352
for (x, y) in itertools.product(range(-(2 ** (bitsize - 1)), 2 ** (bitsize - 1)), repeat=2):
354-
print(f'{c=} {target=} {x=} {y=}')
355353
assert b.call_classically(ctrl=c, a=x, b=y, target=target) == cb.call_classically(
356354
ctrl=c, a=x, b=y, target=target
357355
)

0 commit comments

Comments
 (0)