Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove duplicate statement in tracer-config test
The tracer-config.test.js file contained a duplicate of the statement:

  process.env["SEMMLE_DEPTRACE_SOCKET"] = "abc";

one line apart. This removes the second instance of this statement.
Eric Cornelissen committed Nov 20, 2020
1 parent aafb457 commit 4e8634c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/tracer-config.test.ts
@@ -64,7 +64,6 @@ test("getTracerConfigForLanguage - existing / critical vars", async (t) => {
process.env["SEMMLE_COPY_EXECUTABLES_ROOT"] = "abc";
process.env["SEMMLE_DEPTRACE_SOCKET"] = "abc";
process.env["SEMMLE_JAVA_TOOL_OPTIONS"] = "abc";
process.env["SEMMLE_DEPTRACE_SOCKET"] = "abc";
process.env["CODEQL_VAR"] = "abc";

// Now CodeQL returns all these variables, and one more, with different values

0 comments on commit 4e8634c

Please sign in to comment.