Private
Public Access
0
0

test(rag_phase4): handle None status before .lower() in error check

This commit is contained in:
2026-06-05 12:38:47 -04:00
parent ac08ee875c
commit c96bdb06ba
+1 -1
View File
@@ -75,7 +75,7 @@ def test_phase4_final_verify(live_gui):
if status == 'done':
success = True
break
if "error" in status.lower():
if status and "error" in status.lower():
print(f"[VERIFY] Error detected: {status}")
break
time.sleep(0.5)