Skip to content

Commit

Permalink
try to fix compilation after changes in core #4
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-treskunov committed May 24, 2022
1 parent c939045 commit 6b64237
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package jetbrains.buildServer.nuget.tests.agent.index

import jetbrains.buildServer.ExtensionHolder
import jetbrains.buildServer.agent.BuildProgressLogger
import jetbrains.buildServer.agent.InternalPropertiesHolder
import jetbrains.buildServer.agent.impl.AgentEventDispatcher
import jetbrains.buildServer.agent.impl.artifacts.ArchivePreprocessor
Expand All @@ -19,8 +20,8 @@ class NuGetPackagePathProviderTest {
fun testPackagePath(path: String, fileName: String, expectedPath: String?) {
val m = Mockery()
val extensionHolder = m.mock(ExtensionHolder::class.java)
val propertiesHolder = m.mock(BiFunction::class.java)
val preprocessor = ZipPreprocessor(AgentEventDispatcher(), createTempDir(), BiFunction<String, String, String> {k, d -> d})
val buildProgressLogger = m.mock(BuildProgressLogger::class.java)
val preprocessor = ZipPreprocessor(buildProgressLogger, createTempDir(), BiFunction<String, String, String> {k, d -> d})

m.checking(object: Expectations() {
init {
Expand Down

0 comments on commit 6b64237

Please sign in to comment.