fix(ai-orchestrator): correct test expectation for sanitize_workspace_key (hyphen is allowed)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user