Skip to content

Commit 6f30a79

Browse files
author
SentienceDEV
committed
revert assertTrue to assert_
1 parent 7c7e93b commit 6f30a79

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)