Skip to content

Commit 9329001

Browse files
authored
chore: add code to hide global namespace prefix on TestExplorer (#2907)
1 parent 35ce0c5 commit 9329001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BenchmarkDotNet.TestAdapter/BenchmarkCaseExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ internal static class BenchmarkCaseExtensions
2424
internal static TestCase ToVsTestCase(this BenchmarkCase benchmarkCase, string assemblyPath, bool includeJobInName = false)
2525
{
2626
var benchmarkMethod = benchmarkCase.Descriptor.WorkloadMethod;
27-
var fullClassName = benchmarkCase.Descriptor.Type.GetCorrectCSharpTypeName();
27+
var fullClassName = benchmarkCase.Descriptor.Type.GetCorrectCSharpTypeName(prefixWithGlobal:false);
2828
var parametrizedMethodName = FullNameProvider.GetMethodName(benchmarkCase);
2929

3030
var displayJobInfo = benchmarkCase.GetUnrandomizedJobDisplayInfo();

0 commit comments

Comments
 (0)