Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Jan 20, 2023
1 parent 4873f4f commit bdb23e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/MSBuildDeviceIntegration/Tests/InstallTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ public void ToggleDebugReleaseWithSigning ([Values ("aab", "apk")] string packag
AssertCommercialBuild ();
AssertHasDevices ();

string path = Path.Combine ("temp", TestName);
string path = Path.Combine ("temp", TestName.Replace ("\"", string.Empty));
byte [] data = ResourceData.GetKeystore ();
string storepassfile = Path.Combine (Root, path, "storepass.txt");
string keypassfile = Path.Combine (Root, path, "keypass.txt");
Expand Down Expand Up @@ -324,7 +324,7 @@ public void ToggleDebugReleaseWithSigning ([Values ("aab", "apk")] string packag
Encoding = Encoding.ASCII,
});

using (var builder = CreateApkBuilder (Path.Combine ("temp", TestContext.CurrentContext.Test.Name))) {
using (var builder = CreateApkBuilder (path)) {
Assert.IsTrue (builder.Install (proj), "Install should have succeeded.");
//Now toggle to Release
proj.IsRelease = true;
Expand Down

0 comments on commit bdb23e7

Please sign in to comment.