X Tutup
Skip to content

Commit 53ed20f

Browse files
committed
Fix test
1 parent 748b213 commit 53ed20f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

command/pr_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ func TestPRView_noResultsForBranch(t *testing.T) {
217217
defer restoreCmd()
218218

219219
_, err := RunCommand(prViewCmd, "pr view")
220-
if err == nil || err.Error() != `no open pull requests found for branch "blueberries"` {
220+
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` {
221221
t.Errorf("error running command `pr view`: %v", err)
222222
}
223223

0 commit comments

Comments
 (0)
X Tutup