Skip to content

Commit

Permalink
Correct yaml spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Racer159 committed Nov 3, 2023
1 parent 9ebb402 commit 3f807de
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/test/e2e/09_component_compose_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,22 +58,22 @@ func (suite *CompositionSuite) Test_0_ComposabilityExample() {
// Ensure that common names merge
if runtime.GOOS == "windows" {
suite.Contains(stdErr, `
manifests:
- name: multi-games
namespace: dos-games
files:
- "..\\dos-games\\manifests\\deployment.yaml"
- "..\\dos-games\\manifests\\service.yaml"
- quake-service.yaml`)
manifests:
- name: multi-games
namespace: dos-games
files:
- "..\\dos-games\\manifests\\deployment.yaml"
- "..\\dos-games\\manifests\\service.yaml"
- quake-service.yaml`)
} else {
suite.Contains(stdErr, `
manifests:
- name: multi-games
namespace: dos-games
files:
- ../dos-games/manifests/deployment.yaml
- ../dos-games/manifests/service.yaml
- quake-service.yaml`)
manifests:
- name: multi-games
namespace: dos-games
files:
- ../dos-games/manifests/deployment.yaml
- ../dos-games/manifests/service.yaml
- quake-service.yaml`)
}

// Ensure that the action was appended
Expand Down

0 comments on commit 3f807de

Please sign in to comment.