From 4e97a0e05d6032c1e8771d513392dd67b206896f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 26 Feb 2020 19:53:18 +0100 Subject: [PATCH] Have correct command be run in `repo clone` test --- command/repo_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/repo_test.go b/command/repo_test.go index e6cea29a8..82cae32c7 100644 --- a/command/repo_test.go +++ b/command/repo_test.go @@ -48,7 +48,7 @@ func TestRepoClone(t *testing.T) { }) defer restoreCmd() - output, err := RunCommand(repoViewCmd, tt.args) + output, err := RunCommand(repoCloneCmd, tt.args) if err != nil { t.Fatalf("error running command `repo clone`: %v", err) }