Skip to content

Commit

Permalink
Regex fixups
Browse files Browse the repository at this point in the history
Co-authored-by: Henry Mercer <[email protected]>
  • Loading branch information
angelapwen and henrymercer authored Feb 14, 2024
1 parent e1e0ba3 commit fc1bd33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codeql.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ test("runTool summarizes several fatal errors", async (t) => {
instanceOf: util.ConfigurationError,
message: new RegExp(
'Encountered a fatal error while running \\"codeql-for-testing database finalize --finalize-dataset --threads=2 --ram=2048 db\\"\\. ' +
`Exit code was 32 and error was: ${datasetImportError}\\. Context: ${heapError}. See the logs for more details\\.`,
`Exit code was 32 and error was: ${datasetImportError.replaceAll(".", "\\.")}\\. Context: ${heapError.replaceAll(".", "\\.")}\\. See the logs for more details\\.`,
),
},
);
Expand Down

0 comments on commit fc1bd33

Please sign in to comment.