fix(ai-orchestrator): correct test expectation for sanitize_workspace_key (hyphen is allowed)

This commit is contained in:
2026-07-10 18:31:15 +02:00
parent 5e0cc56a2f
commit 6ae0c91539
@@ -23,7 +23,7 @@ class TestSanitizeWorkspaceKey:
assert sanitize_workspace_key("v1.0_release") == "v1.0_release"
def test_unicode_replaced(self):
assert sanitize_workspace_key("café-123") == "caf__123"
assert sanitize_workspace_key("café-123") == "caf_-123"
class TestGetWorkspacePath: