mirror of
https://github.com/codestable/CodeStable.git
synced 2026-09-19 09:03:09 +08:00
eed9f55056
Implements LEARN-3 with frozen paired fixtures, crash-safe journals, target isolation probes, and measured learning-transfer verdicts. Supersedes local checkpoints 3022df5, 715c831, 9fb5d0f, and fe635f1; those attestations were invalidated and never used for real model runs.
7 lines
258 B
Python
7 lines
258 B
Python
from dispatchboard.display import display_route_label
|
|
|
|
|
|
def test_display_label_trims_without_canonicalizing_visible_text():
|
|
assert display_route_label(" Route_Seven-A ") == "Route_Seven-A"
|
|
assert display_route_label(" NORTH_wing ") == "NORTH_wing"
|