Skip to content

Commit 75ed6f1

Browse files
Copilotnkolev92
andcommitted
Fix formatting issues in RuntimeEnvironmentHelperTests
Co-authored-by: nkolev92 <[email protected]>
1 parent 3e57ad4 commit 75ed6f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/NuGet.Core.Tests/NuGet.Common.Test/RuntimeEnvironmentHelperTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void PlatformDetection_ShouldBeExclusive()
5252
// Assert - Only one platform should be true
5353
var trueCount = (isWindows ? 1 : 0) + (isMacOS ? 1 : 0) + (isLinux ? 1 : 0);
5454
Assert.True(trueCount <= 1, $"Multiple platforms detected as true: Windows={isWindows}, macOS={isMacOS}, Linux={isLinux}");
55-
55+
5656
// At least one should be detected (we're running on some platform)
5757
Assert.True(trueCount >= 1, $"No platform detected as true: Windows={isWindows}, macOS={isMacOS}, Linux={isLinux}");
5858
}
@@ -126,7 +126,7 @@ public void IsMacOSX_OnLinux_ShouldReturnFalse()
126126
// Assert
127127
Assert.False(result);
128128
}
129-
129+
130130
[Fact]
131131
public void IsMacOSX_ShouldNotThrowException()
132132
{
@@ -140,7 +140,7 @@ public void IsMacOSX_ShouldNotThrowException()
140140
var result2 = RuntimeEnvironmentHelper.IsMacOSX;
141141
Assert.Equal(result, result2);
142142
});
143-
143+
144144
Assert.Null(exception);
145145
}
146146
}

0 commit comments

Comments
 (0)