We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da961dd commit 59d0494Copy full SHA for 59d0494
buildSrc/src/test/kotlin/com/google/firebase/gradle/plugins/LicenseResolverPluginTests.kt
@@ -79,7 +79,7 @@ class LicenseResolverPluginTests {
79
android.compileSdkVersion = 26
80
81
thirdPartyLicenses {
82
- add 'customLib', "file:///${File("non_existent_path.txt").absolutePath}"
+ add 'customLib', "${File("non_existent_path.txt").absolutePath}"
83
}
84
""")
85
@@ -141,7 +141,7 @@ class LicenseResolverPluginTests {
141
142
143
144
- add 'customLib1', "file:///${File("src/test/fixtures/license.txt").absolutePath}"
+ add 'customLib1', "${File("src/test/fixtures/license.txt").absolutePath}"
145
146
"""
147
0 commit comments