Skip to content

Commit 14c37f4

Browse files
🔧 Fix manifesto test method name issue
- Replace _execute_sleep_protocol() with rest_and_reflect() - Test now runs successfully with v1.1.0 T-Score fix - Sleep Protocol triggering extensively as expected (T-Scores 0.04-0.08) Resolves method name mismatch discovered during v1.1.0 validation.
1 parent d129630 commit 14c37f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎tests/test_manifesto_learning_v2.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def learn_principle(self, principle: dict) -> dict:
374374
if t_score < self.agent.epsilon:
375375
status = "SLEEP"
376376
# Execute sleep protocol
377-
self.agent._execute_sleep_protocol()
377+
self.agent.rest_and_reflect()
378378
principle_result["sleep_count"] += 1
379379
self.results["sleep_events"].append({
380380
"principle": principle["id"],

0 commit comments

Comments
 (0)