From b64489808c16bc117d4f46ce24557e242fffbff2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Jan 2023 16:18:34 +0000 Subject: [PATCH 1/2] build(deps): Bump github.com/runfinch/common-tests from 0.2.0 to 0.3.0 Bumps [github.com/runfinch/common-tests](https://github.com/runfinch/common-tests) from 0.2.0 to 0.3.0. - [Release notes](https://github.com/runfinch/common-tests/releases) - [Changelog](https://github.com/runfinch/common-tests/blob/main/CHANGELOG.md) - [Commits](https://github.com/runfinch/common-tests/compare/v0.2.0...v0.3.0) --- updated-dependencies: - dependency-name: github.com/runfinch/common-tests dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 3ea83fe19..8cecaf795 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,7 @@ require ( github.com/onsi/gomega v1.24.2 github.com/pelletier/go-toml v1.9.5 github.com/pkg/sftp v1.13.5 - github.com/runfinch/common-tests v0.2.0 + github.com/runfinch/common-tests v0.3.0 github.com/sirupsen/logrus v1.9.0 github.com/spf13/afero v1.9.3 github.com/spf13/cobra v1.6.1 diff --git a/go.sum b/go.sum index 8bfc0373f..6309cb107 100644 --- a/go.sum +++ b/go.sum @@ -502,8 +502,8 @@ github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40T github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/runfinch/common-tests v0.2.0 h1:XQgXNrywEjqKa0oMABY5w3DT+9hv+RFBWOsoE48VIcw= -github.com/runfinch/common-tests v0.2.0/go.mod h1:nbZpK5zQa7/qyLt+2JOdf23iSbiprXlTg+VkXb5k54Q= +github.com/runfinch/common-tests v0.3.0 h1:/KYy015q9taKZa3asVJ1pQ6Jpel+PP16APmclp6P6L4= +github.com/runfinch/common-tests v0.3.0/go.mod h1:UpmjZJ5nid549Xct3uQfFwkygnA1/XUJydizbZdeKHM= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= From 4839c62d85ef86e71d7c81eef8ca49a3a4e4e18b Mon Sep 17 00:00:00 2001 From: "Hsing-Yu (David) Chen" Date: Thu, 12 Jan 2023 15:04:08 -0800 Subject: [PATCH 2/2] update function signature Signed-off-by: Hsing-Yu (David) Chen --- e2e/vm/version_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/vm/version_test.go b/e2e/vm/version_test.go index f0971dd89..fb9fc28f9 100644 --- a/e2e/vm/version_test.go +++ b/e2e/vm/version_test.go @@ -21,7 +21,7 @@ var testVersion = func(o *option.Option) { ginkgo.It("Should print finch version information", func() { // StdoutStr is not used because it trims both leading and trailing spaces, // while we want an exact match here. - gomega.Expect(string(command.StdOut(o, "version"))).Should(gomega.MatchRegexp(fmt.Sprintf(`Client: + gomega.Expect(string(command.Stdout(o, "version"))).Should(gomega.MatchRegexp(fmt.Sprintf(`Client: Version: %s OS\/Arch: [A-Za-z0-9]+\/[A-Za-z0-9]+ GitCommit: %s