diff options
author | Ash McKenzie <amckenzie@gitlab.com> | 2019-09-11 23:01:40 +1000 |
---|---|---|
committer | Igor Drozdov <idrozdov@gitlab.com> | 2019-10-23 11:07:22 +0300 |
commit | 1bade9e198f08437ad150e63dc751edb862a6f51 (patch) | |
tree | ddc792be9340130c00cbac2faa30a1da1ccf7428 /internal/command/lfsauthenticate | |
parent | 412ed17cc66d876c46ee8df3767066ca0e676f28 (diff) | |
download | gitlab-shell-1bade9e198f08437ad150e63dc751edb862a6f51.tar.gz |
More consistent console messages (golang)
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", |