Skip to content

Commit 89115a9

Browse files
authored
Update to latest dependencies (#71)
1 parent 63bdcc3 commit 89115a9

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

fixture-generex/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies {
3737
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
3838

3939
testImplementation(kotlin("reflect"))
40-
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.9")
40+
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
4141
}
4242

4343
lintOptions {

fixture-javafaker/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dependencies {
4242
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
4343

4444
testImplementation(kotlin("reflect"))
45-
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.9")
45+
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
4646
}
4747

4848
lintOptions {

fixture-kotest/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ apply(from = "$rootDir/gradle/scripts/dokka-javadoc.gradle.kts")
2929
dependencies {
3030
api(kotlin("stdlib-jdk8"))
3131
api(project(":fixture"))
32-
api("io.kotest:kotest-property-jvm:4.3.0")
32+
api("io.kotest:kotest-property-jvm:4.3.1")
3333

3434
testImplementation("junit:junit:4.13.1")
3535
testImplementation(kotlin("test"))
3636
testImplementation(kotlin("test-junit"))
3737
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
3838

3939
testImplementation(kotlin("reflect"))
40-
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.9")
40+
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
4141
}
4242

4343
lintOptions {

fixture/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies {
4848
@Suppress("GradleDependency")
4949
testImplementation("com.github.marcellogalhardo:kotlin-fixture:0.0.2")
5050
testImplementation("com.flextrade.jfixture:kfixture:0.2.0")
51-
testImplementation("org.jeasy:easy-random-core:4.2.0")
51+
testImplementation("org.jeasy:easy-random-core:4.3.0")
5252
}
5353

5454
lintOptions {

fixture/src/test/kotlin/com/appmattus/kotlinfixture/ComparisonTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,8 +415,8 @@ class ComparisonTest {
415415
arrayOf(typeOf<org.joda.time.Interval>(), VALID, UNSUPPORTED, UNSUPPORTED, UNSUPPORTED),
416416

417417
// Tuples
418-
arrayOf(typeOf<Pair<String, String>>(), VALID, UNSUPPORTED, VALID, VALID),
419-
arrayOf(typeOf<Triple<String, String, String>>(), VALID, UNSUPPORTED, VALID, VALID),
418+
arrayOf(typeOf<Pair<String, String>>(), VALID, UNSUPPORTED, VALID, UNSUPPORTED),
419+
arrayOf(typeOf<Triple<String, String, String>>(), VALID, UNSUPPORTED, VALID, UNSUPPORTED),
420420

421421
// Array
422422
arrayOf(typeOf<ByteArray>(), VALID, VALID, UNSUPPORTED, VALID),
@@ -514,7 +514,7 @@ class ComparisonTest {
514514
arrayOf(typeOf<AtomicLong>(), VALID, VALID, VALID, VALID),
515515
arrayOf(typeOf<AtomicIntegerArray>(), VALID, VALID, IGNORE, VALID),
516516
arrayOf(typeOf<AtomicLongArray>(), VALID, VALID, IGNORE, VALID),
517-
arrayOf(typeOf<AtomicReference<String>>(), VALID, UNSUPPORTED, VALID, VALID),
517+
arrayOf(typeOf<AtomicReference<String>>(), VALID, UNSUPPORTED, VALID, UNSUPPORTED),
518518

519519
// Enum
520520
arrayOf(typeOf<TestEnumClass>(), VALID, VALID, UNSUPPORTED, VALID),

0 commit comments

Comments
 (0)