You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self._log.error("Some debug message with %s", value)
I only care about value present in log message (if I care at all), not about log message format. It would be redundant to make assertions about whole log message. So, when mutmut changes this to
self._log.error("XXSome debug message with %sXX", value)
tests doesn't fail. And shouldn't.
I propose adding option not to mutate strings with len() < threshold, because it's possibly human-readable messages which shouldn't be tested.
The text was updated successfully, but these errors were encountered:
There is a lot strings like
I only care about value present in log message (if I care at all), not about log message format. It would be redundant to make assertions about whole log message. So, when mutmut changes this to
tests doesn't fail. And shouldn't.
I propose adding option not to mutate strings with len() < threshold, because it's possibly human-readable messages which shouldn't be tested.
The text was updated successfully, but these errors were encountered: