Skip to content

Commit f2d7157

Browse files
authored
Merge pull request #2 from SUPERCILEX/travis
Fix broken tests!
2 parents bc428ed + 24598a6 commit f2d7157

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

auth/src/test/java/com/firebase/ui/auth/testhelpers/CustomRobolectricGradleTestRunner.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
import org.robolectric.res.FileFsFile;
3131
import org.robolectric.res.FsFile;
3232

33+
import java.io.File;
34+
3335
/**
3436
* For custom manifest hack, see:
3537
* https://gist.github.com/venator85/282df3677af9ecac56e5e4b91471cd8f
@@ -67,7 +69,8 @@ protected AndroidManifest getAppManifest(Config config) {
6769
getModuleRootPath(config),
6870
appManifest.getAndroidManifestFile()
6971
.getPath()
70-
.replace("manifests/full", "manifests/aapt"));
72+
.replace("manifests" + File.separator + "full",
73+
"manifests" + File.separator + "aapt"));
7174

7275
return new AndroidManifest(
7376
androidManifestFile,

0 commit comments

Comments
 (0)