We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6709997 commit 504807aCopy full SHA for 504807a
1 file changed
test/requestTracing.test.ts
@@ -56,7 +56,8 @@ describe("request tracing", function () {
56
});
57
} catch (e) { /* empty */ }
58
expect(headerPolicy.headers).not.undefined;
59
- expect(headerPolicy.headers.get("Correlation-Context")).eq("RequestType=Startup");
+ const correlationContext = headerPolicy.headers.get("Correlation-Context");
60
+ expect(correlationContext.includes("RequestType=Startup")).eq(true);
61
62
63
it("should have key vault tag in correlation-context header", async () => {
0 commit comments