From 085d7d718481918cf83f8c18106bb43423447789 Mon Sep 17 00:00:00 2001 From: Betula-L Date: Tue, 19 Mar 2019 17:14:28 +0800 Subject: [PATCH] fix typo for testing documentation --- contributors/devel/sig-testing/testing.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contributors/devel/sig-testing/testing.md b/contributors/devel/sig-testing/testing.md index f6877da43..2baf4b3cf 100644 --- a/contributors/devel/sig-testing/testing.md +++ b/contributors/devel/sig-testing/testing.md @@ -102,8 +102,7 @@ make test WHAT="./pkg/kubelet ./pkg/scheduler" # run tests for pkg/kubelet and In a shell, it's often handy to use brace expansion: ```sh -make test WHAT=./pkg/{kubelet,scheduler} # run tests for pkg/kubelet and -pkg/scheduler +make test WHAT=./pkg/{kubelet,scheduler} # run tests for pkg/kubelet and pkg/scheduler ``` ### Run specific unit test cases in a package