tenseleyflow/documentlanguagemodel / ce52270

Browse files

Test scaffold: add requires_acceptance to fake resolved spec

B12.1's fresh-store manifest bootstrap calls is_gated(spec), which reads requires_acceptance. Six tests under test_train_watch_edges.py mocked the spec via SimpleNamespace and were missing this field.
Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
ce5227093825555cd745c70d54270dfb82c11031
Parents
fe9c820
Tree
4a00b95

1 changed file

StatusFile+-
M tests/unit/cli/test_train_watch_edges.py 1 0
tests/unit/cli/test_train_watch_edges.pymodified
@@ -45,6 +45,7 @@ def _resolved_spec() -> object:
4545
         modality="text",
4646
         params=135_000_000,
4747
         effective_context_length=2048,
48
+        requires_acceptance=False,
4849
     )
4950
 
5051