Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Nino <[email protected]>
  • Loading branch information
Jose Nino committed Jul 11, 2020
1 parent 469e75f commit 3e7be62
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ TEST_P(DecompressorFilterTest, RequestDecompressionDisabled) {
std::unique_ptr<Http::RequestOrResponseHeaderMap> headers_after_filter =
doHeaders(headers_before_filter, false /* end_stream */);

// The request direction adds Accept-Enconding by default. Other than this header, the rest of
// The request direction adds Accept-Encoding by default. Other than this header, the rest of
// the headers should be the same before and after the filter.
headers_after_filter->remove(Http::LowerCaseString("accept-encoding"));
EXPECT_THAT(headers_after_filter, HeaderMapEqualIgnoreOrder(&headers_before_filter));
Expand Down Expand Up @@ -325,7 +325,7 @@ TEST_P(DecompressorFilterTest, NoDecompressionContentEncodingAbsent) {
->value()
.getStringView(),
"mock");
// The request direction adds Accept-Enconding by default. Other than this header, the rest of
// The request direction adds Accept-Encoding by default. Other than this header, the rest of
// the headers should be the same before and after the filter.
headers_after_filter->remove(Http::LowerCaseString("accept-encoding"));
}
Expand Down Expand Up @@ -358,7 +358,7 @@ TEST_P(DecompressorFilterTest, NoDecompressionContentEncodingNotCurrent) {
->value()
.getStringView(),
"mock");
// The request direction adds Accept-Enconding by default. Other than this header, the rest of
// The request direction adds Accept-Encoding by default. Other than this header, the rest of
// the headers should be the same before and after the filter.
headers_after_filter->remove(Http::LowerCaseString("accept-encoding"));
}
Expand All @@ -381,7 +381,7 @@ TEST_P(DecompressorFilterTest, NoResponseDecompressionNoTransformPresent) {
->value()
.getStringView(),
"mock");
// The request direction adds Accept-Enconding by default. Other than this header, the rest of
// The request direction adds Accept-Encoding by default. Other than this header, the rest of
// the headers should be the same before and after the filter.
headers_after_filter->remove(Http::LowerCaseString("accept-encoding"));
}
Expand All @@ -405,7 +405,7 @@ TEST_P(DecompressorFilterTest, NoResponseDecompressionNoTransformPresentInList)
->value()
.getStringView(),
"mock");
// The request direction adds Accept-Enconding by default. Other than this header, the rest of
// The request direction adds Accept-Encoding by default. Other than this header, the rest of
// the headers should be the same before and after the filter.
headers_after_filter->remove(Http::LowerCaseString("accept-encoding"));
}
Expand Down

0 comments on commit 3e7be62

Please sign in to comment.