We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7eee11 commit aa2046eCopy full SHA for aa2046e
test/cases/32-Grants/test_grant_basic.py
@@ -294,6 +294,8 @@ def s5_check_timeseries_exclude_systable(self):
294
tkAuditStb = self.parseSystemStbArrayFromC(vnodeQueryPath, "tkAuditStb")
295
tdLog.info(f"Parsed tkLogStb ({len(tkLogStb)} items): {tkLogStb}")
296
tdLog.info(f"Parsed tkAuditStb ({len(tkAuditStb)} items): {tkAuditStb}")
297
+ assert len(tkLogStb) > 0, "Parsed tkLogStb is empty"
298
+ assert len(tkAuditStb) > 0, "Parsed tkAuditStb is empty"
299
300
tdLog.printNoPrefix("======== test timeseries exclude systable: ")
301
try:
0 commit comments