mrutkows edited a comment on pull request #1105:
URL:
https://github.com/apache/openwhisk-wskdeploy/pull/1105#issuecomment-681994273
Here is the code area of interest for the first error (1742,1743):
```
m, err := testReadAndUnmarshalManifest(t,
"../tests/dat/manifest_data_unmarshal_packages.yaml")
// Unmarshal reads/parses manifest data and sets the values of YAML
// And returns an error if parsing a manifest data fails
if err == nil {
expectedResult := string(2) // <= 1742
actualResult := string(len(m.Packages)) // <== 1743
assert.Equal(t, expectedResult, actualResult, "Expected 2
packages but got "+actualResult)
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]