Skip to content

Commit 14050b8

Browse files
committed
STAR-247 remove format specific parts of assertions
in offline_tools_test.py (cherry picked from commit c318850)
1 parent 8f68014 commit 14050b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

offline_tools_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,9 @@ def test_sstableverify(self):
266266
hashcomputed = False
267267
for line in outlines:
268268
if sstable in line:
269-
if "Verifying BigTableReader" in line:
269+
if "Verifying " in line:
270270
verified = True
271-
elif "Checking computed hash of BigTableReader" in line:
271+
elif "Checking computed hash of " in line:
272272
hashcomputed = True
273273
else:
274274
logger.debug(line)

0 commit comments

Comments
 (0)