Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Fixes for await test
Browse files Browse the repository at this point in the history
  • Loading branch information
im-kulikov committed Apr 23, 2021
1 parent 22d5ea7 commit 8a529e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
- name: Check out code
uses: actions/checkout@v2

- name: golangci-lint
with: { version: latest }
uses: golangci/golangci-lint-action@v2

- name: Cache go mod
uses: actions/cache@v2
with:
Expand All @@ -30,10 +34,6 @@ jobs:
restore-keys: |
${{ runner.os }}-go-${{ matrix.go }}-
- name: golangci-lint
with: { version: latest }
uses: golangci/golangci-lint-action@v2

- name: Tests
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...

Expand Down
2 changes: 1 addition & 1 deletion group/group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type testCase struct {
const (
errAlways = internal.Error("always")

defaultAwait = time.Millisecond * 5
defaultAwait = time.Millisecond * 10
)

func TestNew(t *testing.T) {
Expand Down

0 comments on commit 8a529e4

Please sign in to comment.