Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/Mono.Linker.Tests/TestCases/IndividualTests.cs')
-rw-r--r--test/Mono.Linker.Tests/TestCases/IndividualTests.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Mono.Linker.Tests/TestCases/IndividualTests.cs b/test/Mono.Linker.Tests/TestCases/IndividualTests.cs
index 6a7ae9c56..439caf37e 100644
--- a/test/Mono.Linker.Tests/TestCases/IndividualTests.cs
+++ b/test/Mono.Linker.Tests/TestCases/IndividualTests.cs
@@ -151,8 +151,7 @@ namespace Mono.Linker.Tests.TestCases
protected Guid GetMvid (NPath assemblyPath)
{
- using (var assembly = AssemblyDefinition.ReadAssembly (assemblyPath))
- {
+ using (var assembly = AssemblyDefinition.ReadAssembly (assemblyPath)) {
return assembly.MainModule.Mvid;
}
}
@@ -164,8 +163,7 @@ namespace Mono.Linker.Tests.TestCases
protected LinkedTestCaseResult Run (TestCase testCase)
{
- TestRunner runner;
- return Run (testCase, out runner);
+ return Run (testCase, out _);
}
protected virtual LinkedTestCaseResult Run (TestCase testCase, out TestRunner runner)