From 53ed20f32a6da8b6e82bb161aa834957cc2f05be Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 10 Dec 2019 16:15:37 -0800 Subject: [PATCH] Fix test --- command/pr_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/pr_test.go b/command/pr_test.go index f886f86c5..eb97d2bd5 100644 --- a/command/pr_test.go +++ b/command/pr_test.go @@ -217,7 +217,7 @@ func TestPRView_noResultsForBranch(t *testing.T) { defer restoreCmd() _, err := RunCommand(prViewCmd, "pr view") - if err == nil || err.Error() != `no open pull requests found for branch "blueberries"` { + if err == nil || err.Error() != `no open pull requests found for branch "blueberries". To open a specific PR use a PR number as an argument` { t.Errorf("error running command `pr view`: %v", err) }