Compilation warns

This commit is contained in:
2022-04-17 16:22:40 +01:00
parent 217cc49019
commit 4191513eef
22 changed files with 72 additions and 57 deletions

View File

@ -57,10 +57,10 @@ dataTable.Rows.Add(dataRow);
Assert.NotNull(vm.Resources);
}
[Fact]
public void TestPush()
public async Task TestPush()
{
Program.LoadConfig();
var report = Program.PushPkg(new string[] { "/home/paul/Nupkgs/Yavsc.Abstract.1.0.8.nupkg" });
var report = await Program.PushPkgAsync(new string[] { "/home/paul/Nupkgs/Yavsc.Abstract.1.0.8.nupkg" });
}
[Fact]