Skip to content

Commit

Permalink
Use the ToString format specifier rather than the Replace method (#3242)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcameron- committed Jan 11, 2022
1 parent 25b0dfd commit c431ce4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public override void Initialize(
}
}

this.attachmentGuid = Guid.NewGuid().ToString().Replace("-", string.Empty);
this.attachmentGuid = Guid.NewGuid().ToString("N");

if (this.collectProcessDumpOnTestHostHang)
{
Expand Down

0 comments on commit c431ce4

Please sign in to comment.