From 71a708b515b286f56cb65ff4c0635f37fae740f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Domeradzki?= Date: Wed, 24 Sep 2025 23:22:16 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm.Tests/ArchiCryptoHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArchiSteamFarm.Tests/ArchiCryptoHelper.cs b/ArchiSteamFarm.Tests/ArchiCryptoHelper.cs index 92c5a546c..28224ad82 100644 --- a/ArchiSteamFarm.Tests/ArchiCryptoHelper.cs +++ b/ArchiSteamFarm.Tests/ArchiCryptoHelper.cs @@ -54,9 +54,9 @@ internal sealed class ArchiCryptoHelper { [TestMethod] internal async Task CanEncryptDecryptProtectedDataForCurrentUser() { + // Not supported on other platforms than Windows if (!OperatingSystem.IsWindows()) { - // Not supported on other platforms than Windows - return; + Assert.Inconclusive($"!{nameof(OperatingSystem.IsWindows)}"); } await CanEncryptDecrypt(ECryptoMethod.ProtectedDataForCurrentUser).ConfigureAwait(false);