Skip to content

Commit a620255

Browse files
Copilotskofman1
andcommitted
Fix code style issue: remove redundant namespace qualification
Co-authored-by: skofman1 <[email protected]>
1 parent 824f035 commit a620255

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

global.json.bak

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"sdk": {
3+
"version": "9.0.300",
4+
"rollForward": "latestMajor",
5+
"allowPrerelease": true
6+
},
7+
"tools": {
8+
"dotnet": "9.0.300",
9+
"pinned": true
10+
},
11+
"msbuild-sdks": {
12+
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25420.109",
13+
"Microsoft.Build.NoTargets": "3.7.0"
14+
}
15+
}

test/NuGet.Core.Tests/NuGet.CommandLine.Xplat.Tests/ListPackageCommandRunnerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ public async Task GetPackageMetadataAsync_WithEmptyPackageSources_DoesNotThrowDi
405405

406406
// Act & Assert - Test the private method using reflection
407407
var getPackageMetadataAsyncMethod = typeof(ListPackageCommandRunner)
408-
.GetMethod("GetPackageMetadataAsync", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
408+
.GetMethod("GetPackageMetadataAsync", BindingFlags.NonPublic | BindingFlags.Instance);
409409

410410
Assert.NotNull(getPackageMetadataAsyncMethod);
411411

0 commit comments

Comments
 (0)