We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29abb60 commit 47eab8bCopy full SHA for 47eab8b
tests/FSharp.Test.Utilities/XunitHelpers.fs
@@ -85,12 +85,14 @@ module TestCaseCustomizations =
85
let hash = sha.ComputeHash(bytes)
86
System.Guid(hash.[0..15]) // Take first 16 bytes for GUID
87
88
+ let newDisplayName = $"{oldTestCollection.DisplayName}_{collectionId:N}"
89
+
90
// Create a new collection with a unique id for the test case.
91
let newTestCollection =
92
new TestCollection(
93
oldTestCollection.TestAssembly,
94
oldTestCollection.CollectionDefinition,
- oldTestCollection.DisplayName,
95
+ newDisplayName,
96
collectionId
97
)
98
0 commit comments