Test warning fixes

This commit is contained in:
Garry Newman 2019-05-14 10:23:21 +01:00
parent fff2fc6098
commit d671c1ddc8
2 changed files with 3 additions and 3 deletions

View File

@ -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}" );

View File

@ -13,7 +13,7 @@ namespace Steamworks
public class UgcTest
{
[TestMethod]
public async Task Download()
public void Download()
{
SteamUGC.Download( 1717844711 );
}