We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50b9011 commit 71a708bCopy full SHA for 71a708b
ArchiSteamFarm.Tests/ArchiCryptoHelper.cs
@@ -54,9 +54,9 @@ internal async Task CanEncryptDecrypt(ECryptoMethod cryptoMethod) {
54
55
[TestMethod]
56
internal async Task CanEncryptDecryptProtectedDataForCurrentUser() {
57
+ // Not supported on other platforms than Windows
58
if (!OperatingSystem.IsWindows()) {
- // Not supported on other platforms than Windows
59
- return;
+ Assert.Inconclusive($"!{nameof(OperatingSystem.IsWindows)}");
60
}
61
62
await CanEncryptDecrypt(ECryptoMethod.ProtectedDataForCurrentUser).ConfigureAwait(false);
0 commit comments