Skip to content

Commit

Permalink
tests: add debugging print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jul 21, 2023
1 parent f397bba commit e0630e7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ def repl(x):
"b'", "'").replace(
"\n", "").replace(
"float32", "'>f4'")

assert repl(data_a) == repl(data_b)
a = repl(data_a)
b = repl(data_b)
print("DBUG data_a: ", a)
print("DBUG data_b: ", b)
assert a == b


def dumpibw(filename):
Expand Down

0 comments on commit e0630e7

Please sign in to comment.