Skip to content

Commit 9f2f83c

Browse files
Update dex and gradle
1 parent 7103ab2 commit 9f2f83c

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

test_runner/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ dependencies {
151151
implementation("com.google.apis:google-api-services-toolresults:v1beta3-rev20190207-1.28.0")
152152

153153
// https://github.com/linkedin/dex-test-parser/releases
154-
implementation("com.linkedin.dextestparser:parser:2.0.1")
154+
implementation("com.linkedin.dextestparser:parser:2.1.0")
155155

156156
// NOTE: iOS support isn't in the public artifact. Use testing jar generated from the private gcloud CLI json
157157
// https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.google.apis%22%20AND%20a%3A%22google-api-services-testing%22
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.3-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.3.1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

test_runner/src/test/kotlin/ftl/filter/TestFiltersTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,9 @@ class TestFiltersTest {
206206
}
207207

208208
private fun getTestMethodSet(): List<TestMethod> {
209-
val m1 = TestMethod("a.b#c", listOf(TestAnnotation("org.junit.Ignore", emptyMap())))
210-
val m2 = TestMethod("d.e#f", listOf(TestAnnotation("Foo", emptyMap())))
211-
val m3 = TestMethod("h.i#j", listOf(TestAnnotation("Bar", emptyMap())))
209+
val m1 = TestMethod("a.b#c", listOf(TestAnnotation("org.junit.Ignore", emptyMap(), false)))
210+
val m2 = TestMethod("d.e#f", listOf(TestAnnotation("Foo", emptyMap(), false)))
211+
val m3 = TestMethod("h.i#j", listOf(TestAnnotation("Bar", emptyMap(), false)))
212212
return listOf(m1, m2, m3)
213213
}
214214

0 commit comments

Comments
 (0)