ywkaras commented on a change in pull request #8248:
URL: https://github.com/apache/trafficserver/pull/8248#discussion_r696715956
##########
File path: tests/gold_tests/pluginTest/test_hooks/body_buffer.test.py
##########
@@ -99,10 +99,10 @@ def setupTS(self):
})
self._ts.Streams.stderr = Testers.ContainsExpression(
- rf"request_buffer_plugin gets the request body with
length\[{self.content_length_size}\]",
+ rfr"request_buffer_plugin gets the request body with
length\[{self.content_length_size}\]",
Review comment:
Is rfr a thing? Doesn't seem to be in Python 3.7. I think maybe the
expression string is a regular expression, so maybe this would be an option:
```
f"request_buffer_plugin gets the request body with
length.{self.content_length_size}.",
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]