Skip to content

Commit

Permalink
Merge branch 'hotfix/v2.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
lhSunde committed Jun 2, 2021
2 parents ea3eadd + b29774e commit f8f2140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Arkivverket.Arkade.Core/Util/TestId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public TestId(TestKind testKind, uint number, string version = default)
{
Kind = testKind;
Number = number;
Version = $"v{version}";
Version = version == default ? default : $"v{version}";
}

public static TestId Create(string testId)
Expand Down

0 comments on commit f8f2140

Please sign in to comment.