Skip to content

Commit 93243ac

Browse files
authored
Fix: issue template path, runtime name in tests (#111)
## What * Fix issue templates path * Fix runtime name for test environment ## Why * Issue templates are in the wrong path * Wrong runtime name for test environment ## Notes <!-- Add any notes here --> ## Checklist * [x] _I have read [CONTRIBUTING.md](https://github.com/codefresh-io/terraform-provider-codefresh/blob/master/README.md)._ * [x] _I have [allowed changes to my fork to be made](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork)._ * [x] _I have added tests, assuming new tests are warranted_. * [x] _I understand that the `/test` comment will be ignored by the CI trigger [unless it is made by a repo admin or collaborator](https://codefresh.io/docs/docs/pipelines/triggers/git-triggers/#support-for-building-pull-requests-from-forks)._
1 parent bd3ca36 commit 93243ac

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed
File renamed without changes.

codefresh/resource_pipeline_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func TestAccCodefreshPipeline_Variables(t *testing.T) {
144144
func TestAccCodefreshPipeline_RuntimeEnvironment(t *testing.T) {
145145
name := pipelineNamePrefix + acctest.RandString(10)
146146
resourceName := "codefresh_pipeline.test"
147-
runtimeName := "system/default"
147+
runtimeName := "system/default/hybrid/k8s" // must be present in test environment
148148
var pipeline cfClient.Pipeline
149149

150150
resource.ParallelTest(t, resource.TestCase{

0 commit comments

Comments
 (0)