From 495b415c34065f221e6d797772598d5e5f6ed583 Mon Sep 17 00:00:00 2001 From: andrey1s Date: Sun, 18 Sep 2022 21:33:11 +0300 Subject: [PATCH] TestCreateUser add Parallel --- example/pkg/command/create_user_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/example/pkg/command/create_user_test.go b/example/pkg/command/create_user_test.go index 84b74f6..c6b051f 100644 --- a/example/pkg/command/create_user_test.go +++ b/example/pkg/command/create_user_test.go @@ -12,6 +12,8 @@ import ( ) func TestCreateUser(t *testing.T) { + t.Parallel() + ctx := context.Background() buf := bytes.Buffer{} out := output.Buffer(&buf)