Skip to content

Commit

Permalink
chore: fix artifacts tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Feb 20, 2023
1 parent f320601 commit 6e8c6c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions lib/modules/manager/gomod/artifacts.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ describe('modules/manager/gomod/artifacts', () => {
{ file: { contents: 'New go.sum 2', path: 'go.mod', type: 'addition' } },
]);
expect(execSnapshots).toMatchObject([
{ cmd: 'docker pull renovate/sidecar' },
{ cmd: 'docker pull containerbase/sidecar' },
{},
{
cmd:
Expand All @@ -1125,7 +1125,7 @@ describe('modules/manager/gomod/artifacts', () => {
'-e BUILDPACK_CACHE_DIR ' +
'-e CONTAINERBASE_CACHE_DIR ' +
'-w "/tmp/github/some/repo" ' +
'renovate/sidecar' +
'containerbase/sidecar' +
' bash -l -c "' +
'install-tool golang 1.14.0' +
' && ' +
Expand Down Expand Up @@ -1171,7 +1171,7 @@ describe('modules/manager/gomod/artifacts', () => {
{ file: { contents: 'New go.sum 2', path: 'go.mod', type: 'addition' } },
]);
expect(execSnapshots).toMatchObject([
{ cmd: 'docker pull renovate/sidecar' },
{ cmd: 'docker pull containerbase/sidecar' },
{},
{
cmd:
Expand All @@ -1188,7 +1188,7 @@ describe('modules/manager/gomod/artifacts', () => {
'-e BUILDPACK_CACHE_DIR ' +
'-e CONTAINERBASE_CACHE_DIR ' +
'-w "/tmp/github/some/repo" ' +
'renovate/sidecar' +
'containerbase/sidecar' +
' bash -l -c "' +
'install-tool golang 1.14.0' +
' && ' +
Expand Down
4 changes: 2 additions & 2 deletions lib/modules/manager/helmfile/artifacts.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ describe('modules/manager/helmfile/artifacts', () => {
{
binarySource: 'docker',
expectedCommands: [
{ cmd: 'docker pull renovate/sidecar' },
{ cmd: 'docker pull containerbase/sidecar' },
{ cmd: 'docker ps --filter name=renovate_sidecar -aq' },
{
cmd:
Expand All @@ -165,7 +165,7 @@ describe('modules/manager/helmfile/artifacts', () => {
'-e BUILDPACK_CACHE_DIR ' +
'-e CONTAINERBASE_CACHE_DIR ' +
'-w "/tmp/github/some/repo" ' +
'renovate/sidecar ' +
'containerbase/sidecar ' +
'bash -l -c "' +
'install-tool helm v3.7.2' +
' && ' +
Expand Down

0 comments on commit 6e8c6c6

Please sign in to comment.