Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: k0rdent/kcm
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 56a0ce83a5a02f7816043caebf6d02337ed15ccb
Choose a base ref
..
head repository: k0rdent/kcm
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 39e647984682716dd4820623dcf14dabf26eafc5
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 docs/dev.md
  2. +1 −1 test/utils/utils.go
2 changes: 1 addition & 1 deletion docs/dev.md
Original file line number Diff line number Diff line change
@@ -166,7 +166,7 @@ GINKGO_LABEL_FILTER="provider:cloud" make test-e2e
would run all cloud provider tests. To see a list of all available labels run:

```bash
ginkgo labels ./test/e2e
ginkgo labels ./test/e2e/scenarios
```

### Nuke created resources
2 changes: 1 addition & 1 deletion test/utils/utils.go
Original file line number Diff line number Diff line change
@@ -107,7 +107,7 @@ func GetProjectDir() (string, error) {
if err != nil {
return wd, err
}
wd = strings.ReplaceAll(wd, "/test/e2e", "")
wd = strings.ReplaceAll(wd, "/test/e2e/scenarios", "")
return wd, nil
}