From 7a875798fea9321bad2636040d9be2c30bc0fa8f Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sun, 12 Apr 2026 22:16:14 -0500 Subject: feat: add repository acl management Implements: https://todo.sr.ht/~ccleberg/hutch/39 Implements: https://todo.sr.ht/~ccleberg/hutch/40 Implements: https://todo.sr.ht/~ccleberg/hutch/41 --- HutchTests/RepositorySettingsViewModelTests.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'HutchTests/RepositorySettingsViewModelTests.swift') diff --git a/HutchTests/RepositorySettingsViewModelTests.swift b/HutchTests/RepositorySettingsViewModelTests.swift index f211bab..5b06539 100644 --- a/HutchTests/RepositorySettingsViewModelTests.swift +++ b/HutchTests/RepositorySettingsViewModelTests.swift @@ -35,9 +35,9 @@ struct RepositorySettingsViewModelTests { @Test @MainActor func gitCanonicalEntityAddsMissingTilde() { - #expect(RepositorySettingsViewModel.gitCanonicalEntity(from: "alice") == "~alice") - #expect(RepositorySettingsViewModel.gitCanonicalEntity(from: "~alice") == "~alice") - #expect(RepositorySettingsViewModel.gitCanonicalEntity(from: " alice ") == "~alice") + #expect(RepositoryACLViewModel.canonicalEntity(from: "alice") == "~alice") + #expect(RepositoryACLViewModel.canonicalEntity(from: "~alice") == "~alice") + #expect(RepositoryACLViewModel.canonicalEntity(from: " alice ") == "~alice") } @Test -- cgit v1.2.3