Skip to content

Commit 9e662e8

Browse files
author
SentienceDEV
committed
fix assertTrue again
1 parent 853cba6 commit 9e662e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentience/agent_runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ def assert_done(
583583
True if task is complete (assertion passed), False otherwise
584584
"""
585585
# Convenience wrapper for assert_ with required=True
586-
ok = self.assertTrue(predicate, label=label, required=True)
586+
ok = self.assert_(predicate, label=label, required=True)
587587
if ok:
588588
self._task_done = True
589589
self._task_done_label = label

0 commit comments

Comments
 (0)