Skip to content

Commit bdb23e7

Browse files
committed
Fix unit test
1 parent 4873f4f commit bdb23e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/MSBuildDeviceIntegration/Tests/InstallTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ public void ToggleDebugReleaseWithSigning ([Values ("aab", "apk")] string packag
296296
AssertCommercialBuild ();
297297
AssertHasDevices ();
298298

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

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

0 commit comments

Comments
 (0)