diff --git a/Dockerfile b/Dockerfile index 4386172..6dafe03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,4 +22,4 @@ LABEL version=${VERSION} WORKDIR /workdir -ENTRYPOINT [/usr/bin/yq] \ No newline at end of file +ENTRYPOINT /usr/bin/yq diff --git a/pkg/yqlib/operator_assign_test.go b/pkg/yqlib/operator_assign_test.go index 8c5fb38..c3d50bb 100644 --- a/pkg/yqlib/operator_assign_test.go +++ b/pkg/yqlib/operator_assign_test.go @@ -6,7 +6,7 @@ import ( var assignOperatorScenarios = []expressionScenario{ { - description: "Update parent to be the child value", + description: "Update node to be the child value", document: `{a: {b: {g: foof}}}`, expression: `.a |= .b`, expected: []string{ @@ -14,7 +14,7 @@ var assignOperatorScenarios = []expressionScenario{ }, }, { - description: "Update to be the sibling value", + description: "Update node to be the sibling value", document: `{a: {b: child}, b: sibling}`, expression: `.a = .b`, expected: []string{