Skip to content

Commit e2d3567

Browse files
committed
Fix checks
1 parent 4d57c70 commit e2d3567

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/pull_create_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ func TestPullCreateParallel(t *testing.T) {
305305
assert.Equal(t, 3, repo1.NumOpenPulls)
306306

307307
var wg sync.WaitGroup
308-
for i := 0; i < 5; i++ {
308+
for i := range 5 {
309309
wg.Go(func() {
310310
branchName := fmt.Sprintf("new-branch-%d", i)
311311
testEditFileToNewBranch(t, sessionFork, "user1", "repo1", "master", branchName, "README.md", fmt.Sprintf("Hello, World (Edited) %d\n", i))

0 commit comments

Comments
 (0)