diff options
| author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2025-04-14 22:47:59 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-14 22:47:59 +0000 |
| commit | 623a7d5952b77a76f4bf122f3e057fd2249bc99d (patch) | |
| tree | beed6ce566ae9e0725d99ac671c88bf5629a19b6 /internal/tests/integration/integration_test.go | |
| parent | 40eab0b7df39f7751578fc85e5cd133b86fb2812 (diff) | |
deps(actions): Bump golangci/golangci-lint-action from 6 to 7 (#2357)
* deps(actions): Bump golangci/golangci-lint-action from 6 to 7
Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 6 to 7.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v6...v7)
---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* fix(lint): Fixing new lint errors
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
---------
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'internal/tests/integration/integration_test.go')
| -rw-r--r-- | internal/tests/integration/integration_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/tests/integration/integration_test.go b/internal/tests/integration/integration_test.go index 10439288..b060fb9f 100644 --- a/internal/tests/integration/integration_test.go +++ b/internal/tests/integration/integration_test.go @@ -52,7 +52,7 @@ func inOutContains(t *testing.T, i, o string) { t.Helper() stdout, stderr, err := cmd(t, "-i", i).run() - assert.Equal(t, "", stderr) + assert.Empty(t, stderr) assert.Contains(t, stdout, o) require.NoError(t, err) } @@ -63,7 +63,7 @@ func assertSuccess(t *testing.T, o, e string, err error, expected string) { require.NoError(t, err) // Filter out AWS SDK checksum warnings filteredErr := filterAWSChecksumWarnings(e) - assert.Equal(t, "", filteredErr) + assert.Empty(t, filteredErr) assert.Equal(t, expected, o) } @@ -87,7 +87,7 @@ func assertFailed(t *testing.T, o, e string, err error, expected string) { t.Helper() assert.Contains(t, e, expected) - assert.Equal(t, "", o) + assert.Empty(t, o) require.Error(t, err) } |
