Skip to content

Commit 532dfe3

Browse files
committed
fix comments
Signed-off-by: Wantong Jiang <[email protected]>
1 parent a5b8810 commit 532dfe3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ jobs:
140140
- name: Run e2e tests
141141
run: |
142142
if [ "${{ matrix.customized-settings }}" = "default" ]; then
143-
make e2e-tests LABEL_FILTER="!custom && !joinleave && !rp"
143+
make e2e-tests LABEL_FILTER="!custom && !joinleave && !resourceplacement"
144144
elif [ "${{ matrix.customized-settings }}" = "resourceplacement" ]; then
145-
make e2e-tests LABEL_FILTER="!custom && rp"
145+
make e2e-tests LABEL_FILTER="!custom && resourceplacement"
146146
elif [ "${{ matrix.customized-settings }}" = "joinleave" ]; then
147147
make e2e-tests LABEL_FILTER="!custom && joinleave"
148148
else

test/e2e/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ test suites, follow the steps below:
4747

4848
or run tests related to resourcePlacement (rp) only with the following command:
4949
```sh
50-
ginkgo --label-filter="rp" -v -p .
50+
ginkgo --label-filter="resourceplacement" -v -p .
5151
```
5252

5353
or create a launch.json in your vscode workspace.

test/e2e/resource_placement_pickall_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"github.com/kubefleet-dev/kubefleet/test/e2e/framework"
3232
)
3333

34-
var _ = Describe("placing namespaced scoped resources using a RP with PickAll policy", Label("rp"), func() {
34+
var _ = Describe("placing namespaced scoped resources using a RP with PickAll policy", Label("resourceplacement"), func() {
3535
crpName := fmt.Sprintf(crpNameTemplate, GinkgoParallelProcess())
3636
rpName := fmt.Sprintf(rpNameTemplate, GinkgoParallelProcess())
3737

test/e2e/resource_placement_pickn_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"github.com/kubefleet-dev/kubefleet/test/e2e/framework"
3232
)
3333

34-
var _ = Describe("placing namespaced scoped resources using a RP with PickN policy", Label("rp"), func() {
34+
var _ = Describe("placing namespaced scoped resources using a RP with PickN policy", Label("resourceplacement"), func() {
3535
crpName := fmt.Sprintf(crpNameTemplate, GinkgoParallelProcess())
3636
rpName := fmt.Sprintf(rpNameTemplate, GinkgoParallelProcess())
3737
rpKey := types.NamespacedName{Name: rpName, Namespace: appNamespace().Name}

0 commit comments

Comments
 (0)