Skip to content

Commit

Permalink
make test run in parallel
Browse files Browse the repository at this point in the history
Signed-off-by: James Yu <jyu@confluent.io>
  • Loading branch information
smilence-yu committed May 8, 2022
1 parent f80db84 commit 81a6caa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/integration/http/blocking_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ type BlockingSenderReceiverTestOutput struct {
type BlockingSenderReceiverTestCases map[string]BlockingSenderReceiverTest

func TestNonBlockingSenderReceiver(t *testing.T) {
t.Parallel()
now := time.Now()

testCases := BlockingSenderReceiverTestCases{
Expand Down Expand Up @@ -103,6 +104,7 @@ func TestNonBlockingSenderReceiver(t *testing.T) {
}

func TestBlockingSenderReceiver(t *testing.T) {
t.Parallel()
now := time.Now()

testCases := BlockingSenderReceiverTestCases{
Expand Down

0 comments on commit 81a6caa

Please sign in to comment.