Skip to content

Commit

Permalink
Merge pull request #17 from catatsuy/feature_refactor_test_name
Browse files Browse the repository at this point in the history
Update test function names for processing files
  • Loading branch information
catatsuy authored Mar 30, 2024
2 parents 8da8887 + 1171393 commit 364ed0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestRun_failToProvideStdin(t *testing.T) {
}
}

func TestProcessFiles_replace(t *testing.T) {
func TestReplaceProcess_replace(t *testing.T) {
outStream, errStream, inputStream := new(bytes.Buffer), new(bytes.Buffer), new(bytes.Buffer)
cl := cli.NewCLI(outStream, errStream, inputStream)

Expand All @@ -88,7 +88,7 @@ func TestProcessFiles_replace(t *testing.T) {
}
}

func TestProcessFiles_noMatch(t *testing.T) {
func TestReplaceProcess_noMatch(t *testing.T) {
outStream, errStream, inputStream := new(bytes.Buffer), new(bytes.Buffer), new(bytes.Buffer)
cl := cli.NewCLI(outStream, errStream, inputStream)

Expand Down

0 comments on commit 364ed0d

Please sign in to comment.