Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Summary of changes Redact `##vso` from being printed when we write test method arguments ## Reason for change When printed to the console, this signifies a "command" which confuses azdo: ``` ##[warning]'11:09:46 [DBG] [xUnit.net 00:00:02.05] Datadog.Trace.Tools.Runner.IntegrationTests: STARTED: Datadog.Trace.Tools.Runner.IntegrationTests.ConfigureCiCommandTests.ConfigureCi(azp, ##vso\[task.setvariable variable=(?<name>[A-Z1-9_]+);\](?<value>.*), null)' contains logging command keyword '##vso', but it's not a legal command. Please see the list of accepted commands: https://go.microsoft.com/fwlink/?LinkId=817296 ``` ## Implementation details Just replace `##vso` with `#####` ## Test coverage Meh
- Loading branch information