Skip to content

Commit 7e39d40

Browse files
committed
'new', not true
1 parent 001c1d0 commit 7e39d40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli-repl/src/mongosh-repl.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ describe('MongoshNodeRepl', function () {
396396

397397
context(
398398
`autocompleting during .editor [${
399-
process.env.USE_NEW_AUTOCOMPLETE ?? 'old'
399+
process.env.USE_NEW_AUTOCOMPLETE ? 'new' : 'old'
400400
}]`,
401401
function () {
402402
it('does not stop input when autocompleting during .editor', async function () {
@@ -474,7 +474,7 @@ describe('MongoshNodeRepl', function () {
474474
});
475475

476476
context(
477-
`autocompletion [${process.env.USE_NEW_AUTOCOMPLETE ?? 'old'}]`,
477+
`autocompletion [${process.env.USE_NEW_AUTOCOMPLETE ? 'new' : 'old'}]`,
478478
function () {
479479
it('autocompletes collection methods', async function () {
480480
input.write('db.coll.');

0 commit comments

Comments
 (0)