diff options
Diffstat (limited to 'internal/command/lfsauthenticate')
-rw-r--r-- | internal/command/lfsauthenticate/lfsauthenticate_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/command/lfsauthenticate/lfsauthenticate_test.go b/internal/command/lfsauthenticate/lfsauthenticate_test.go index f2ccc20..22e151a 100644 --- a/internal/command/lfsauthenticate/lfsauthenticate_test.go +++ b/internal/command/lfsauthenticate/lfsauthenticate_test.go @@ -31,12 +31,12 @@ func TestFailedRequests(t *testing.T) { { desc: "With missing arguments", arguments: &commandargs.Shell{}, - expectedOutput: "> GitLab: Disallowed command", + expectedOutput: "Disallowed command", }, { desc: "With disallowed command", arguments: &commandargs.Shell{GitlabKeyId: "1", SshArgs: []string{"git-lfs-authenticate", "group/repo", "unknown"}}, - expectedOutput: "> GitLab: Disallowed command", + expectedOutput: "Disallowed command", }, { desc: "With disallowed user", |