Skip to content

Commit 9d3314b

Browse files
committed
test: noted oclif issue
1 parent 0e6b9ce commit 9d3314b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/nut/listAndDisplay.nut.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,9 @@ describe('Org Command NUT', () => {
198198
});
199199
it('should produce the URL with given path for an org in json', () => {
200200
const result = execCmd<OrgOpenOutput>(
201-
`force:org:open -o ${aliasedUsername} --urlonly --path 'foo/bar/baz' --json`,
201+
// see WI W-12694761 for single-quote behavior
202+
// eslint-disable-next-line sf-plugin/no-execcmd-double-quotes
203+
`force:org:open -o ${aliasedUsername} --urlonly --path "foo/bar/baz" --json`,
202204
{
203205
ensureExitCode: 0,
204206
}

0 commit comments

Comments
 (0)