X Tutup
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions affectedmoduledetector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ gradlePlugin {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testImplementation("junit:junit:4.13.2")
testImplementation("com.nhaarman:mockito-kotlin:1.6.0")
testImplementation("com.google.truth:truth:1.1.3")
testImplementation("org.mockito.kotlin:mockito-kotlin:4.1.0")
testImplementation("com.google.truth:truth:1.4.2")
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.dropbox.affectedmoduledetector

import com.nhaarman.mockito_kotlin.mock
import org.junit.rules.TestRule
import org.junit.runner.Description
import org.junit.runners.model.Statement
import org.mockito.kotlin.mock

/**
* Special rule for dependency detector tests that will attach logs to a failure.
Expand Down
X Tutup