diff --git a/Facepunch.Steamworks.Test/RemoteStorageTest.cs b/Facepunch.Steamworks.Test/RemoteStorageTest.cs index a47d180..157315d 100644 --- a/Facepunch.Steamworks.Test/RemoteStorageTest.cs +++ b/Facepunch.Steamworks.Test/RemoteStorageTest.cs @@ -13,7 +13,7 @@ namespace Steamworks public class RemoteStorageTest { [TestMethod] - public async Task Quotas() + public void Quotas() { Console.WriteLine( $"SteamRemoteStorage.QuotaBytes: {SteamRemoteStorage.QuotaBytes}" ); Console.WriteLine( $"SteamRemoteStorage.QuotaRemainingBytes: {SteamRemoteStorage.QuotaRemainingBytes}" ); @@ -21,7 +21,7 @@ namespace Steamworks } [TestMethod] - public async Task IsCloudEnabled() + public void IsCloudEnabled() { Console.WriteLine( $"SteamRemoteStorage.IsCloudEnabled: {SteamRemoteStorage.IsCloudEnabled}" ); Console.WriteLine( $"SteamRemoteStorage.IsCloudEnabledForAccount: {SteamRemoteStorage.IsCloudEnabledForAccount}" ); diff --git a/Facepunch.Steamworks.Test/UgcTest.cs b/Facepunch.Steamworks.Test/UgcTest.cs index 4cb0832..9c15019 100644 --- a/Facepunch.Steamworks.Test/UgcTest.cs +++ b/Facepunch.Steamworks.Test/UgcTest.cs @@ -13,7 +13,7 @@ namespace Steamworks public class UgcTest { [TestMethod] - public async Task Download() + public void Download() { SteamUGC.Download( 1717844711 ); }