Skip to content

Commit

Permalink
⬆️ Bump files with dotnet-file sync
Browse files Browse the repository at this point in the history
# devlooped/dotnet-trx

- Fix markup style error if test contains [ or ] devlooped/dotnet-trx@76fa22f
  • Loading branch information
devlooped-bot authored and kzu committed Jul 31, 2024
1 parent 73100ff commit 7740ab7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .netconfig
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
weak
[file "src/dotnet-retest/TrxCommand.cs"]
url = https://github.com/devlooped/dotnet-trx/blob/main/src/dotnet-trx/TrxCommand.cs
sha = 4727a27caac06f6ab0f04a7846c27c607568fa79
etag = 5b9909076141ed31eefb69075c74f5237180ae4ae342bcdb3696126b8c02adec
sha = 76fa22ff0c3d9838ab0c335c782c8204f14293d5
etag = 36ecd31b8397646046671ca3950e7032d5ca21fb28b2135e7712b1b6bf196b96
weak
[file "src/dotnet-retest/Process.cs"]
url = https://github.com/devlooped/dotnet-trx/blob/main/src/dotnet-trx/Process.cs
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet-retest/TrxCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public override int Execute(CommandContext context, TrxSettings settings)

foreach (var result in results)
{
var test = result.Attribute("testName")!.Value;
var test = result.Attribute("testName")!.Value.EscapeMarkup();
var elapsed = TimeSpan.Parse(result.Attribute("duration")!.Value);
var output = settings.Output ? result.CssSelectElement("StdOut")?.Value : default;

Expand Down

0 comments on commit 7740ab7

Please sign in to comment.