Skip to content

Commit

Permalink
fix(tests): use the prefix in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik committed Feb 11, 2025
1 parent 51d8675 commit 32e2e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli-repl/src/cli-repl.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,7 @@ describe('CliRepl', function () {
expect(cliRepl.logWriter?.logFilePath).equals(
path.join(
customLogHomePath,
(cliRepl.logWriter?.logId as string) + '_log'
'mongosh_' + (cliRepl.logWriter?.logId as string) + '_log'
)
);
});
Expand Down

0 comments on commit 32e2e7e

Please sign in to comment.