Skip to content

Commit

Permalink
make tests to fail, see if trace is printed
Browse files Browse the repository at this point in the history
  • Loading branch information
heng-liu committed Oct 13, 2021
1 parent 4385865 commit d3400ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public void CreateNetCoreProject_AddProjectReference()
testContext.NuGetApexTestService.WaitForAutoRestore();

VisualStudio.AssertNoErrors();
CommonUtility.AssertPackageInAssetsFile(VisualStudio, testContext.Project, "TestProject2", "1.0.0");
//CommonUtility.AssertPackageInAssetsFile(VisualStudio, testContext.Project, "TestProject2", "1.0.0");
CommonUtility.AssertPackageInAssetsFile(VisualStudio, testContext.Project, "randomString", "1.0.0");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public async Task InstallFromPMCForPC_SucceedAsync()

nugetConsole.InstallPackageFromPMC(signedPackage.Id, signedPackage.Version);

CommonUtility.AssertPackageInPackagesConfig(VisualStudio, testContext.Project, signedPackage.Id, signedPackage.Version);
//CommonUtility.AssertPackageInPackagesConfig(VisualStudio, testContext.Project, signedPackage.Id, signedPackage.Version);
CommonUtility.AssertPackageInPackagesConfig(VisualStudio, testContext.Project, "randomString", signedPackage.Version);
}
}

Expand Down

0 comments on commit d3400ff

Please sign in to comment.