From e0630e773e9220bfdaddb91d0e2447519326db23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20M=C3=BCller?= Date: Fri, 21 Jul 2023 15:42:38 +0200 Subject: [PATCH] tests: add debugging print statements --- tests/helper.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/helper.py b/tests/helper.py index 3217696..b7719fd 100644 --- a/tests/helper.py +++ b/tests/helper.py @@ -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):