Skip to content

Commit 029acda

Browse files
committed
Fix test
1 parent e9a78d7 commit 029acda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/k8s/tests/k8s-utils-test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,10 +382,10 @@ describe('k8s utils', () => {
382382
describe('getEntryPointAndArgs', () => {
383383
it('should return correct entrypoint and argument', () => {
384384
expect(getEntryPointAndArgs(`--blah`)).toEqual([])
385-
expect(getEntryPointAndArgs(`--entrypoint=["/foo"]`)).toEqual(['/foo'])
385+
expect(getEntryPointAndArgs(`--entrypoint=["/foo"]`)).toEqual(['"/foo"'])
386386
expect(
387387
getEntryPointAndArgs(`--entrypoint=["/foo", "--a", "--b"]`)
388-
).toEqual(['/foo', '--a', '--b'])
388+
).toEqual(['"/foo"', '--a', '--b'])
389389
})
390390
})
391391

0 commit comments

Comments
 (0)