We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f104a commit df3e3bbCopy full SHA for df3e3bb
command/pr_create_test.go
@@ -2,9 +2,12 @@ package command
2
3
import (
4
//"regexp"
5
+ "fmt"
6
+ "os"
7
"testing"
8
9
//"github.com/github/gh-cli/context"
10
+ "github.com/github/gh-cli/git"
11
"github.com/github/gh-cli/test"
12
//"github.com/github/gh-cli/utils"
13
)
@@ -19,10 +22,10 @@ func TestPrCreateHelperProcess(*testing.T) {
19
22
"dirty": " M git/git.go",
20
23
}
21
24
- args := GetTestHelperProcessArgs()
25
+ args := test.GetTestHelperProcessArgs()
26
switch args[1] {
27
case "status":
- fmt.Println(statusOutputs(args[0]))
28
+ fmt.Println(statusOutputs[args[0]])
29
case "push":
30
fmt.Println()
31
0 commit comments