Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
RojaEnnam committed Aug 11, 2021
1 parent b9233d1 commit 23dc51a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static TheoryData<TelemetryTheoryData> SetTelemetryDataTheoryData
{
HttpRequestMessage = BuildHttpRequestMessage(new Dictionary<string, string> { {"header1", "value1"} }),
ExpectedHeaders = BuildHttpRequestHeaders(new Dictionary<string, string> { {"header1", "value1"} }),
TestId = "withAdditionalHeaders"
TestId = "withAdditionalIncomingHeaders"
},
new TelemetryTheoryData
{
Expand All @@ -99,9 +99,9 @@ public static TheoryData<TelemetryTheoryData> SetTelemetryDataTheoryData
new TelemetryTheoryData
{
HttpRequestMessage = BuildHttpRequestMessage(),
ExpectedHeaders = BuildHttpRequestHeaders(),
ExpectedHeaders = BuildHttpRequestHeaders(new Dictionary<string, string> { {"header1", "value1"} }),
AdditionalHeaders = new Dictionary<string, string> { { "header1", "value1" } },
TestId = "withXClientCurrentTelemetryHeader"
TestId = "withAdditionalInputHeader"
},
};
}
Expand Down

0 comments on commit 23dc51a

Please sign in to comment.