We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e57a0a3 commit 4f669daCopy full SHA for 4f669da
1 file changed
tests/service/ExprTests.fs
@@ -41,7 +41,7 @@ module internal Utils =
41
let tempFileName = Path.GetTempFileName()
42
try
43
let tempFile, tempExt = Path.GetFileNameWithoutExtension tempFileName, Path.GetExtension tempFileName
44
- let procId, threadId = System.Diagnostics.Process.GetCurrentProcess().Id, System.Threading.Thread.CurrentThread.ManagedThreadId
+ let procId, threadId = Process.GetCurrentProcess().Id, Thread.CurrentThread.ManagedThreadId
45
String.concat "" [tempFile; "_"; string procId; "_"; string threadId; tempExt] // ext includes dot
46
finally
47
0 commit comments