Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfeo committed Dec 19, 2024
1 parent 5438c11 commit f3fb024
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.gabrielfeo.develocity.api
import com.gabrielfeo.develocity.api.internal.*
import com.google.common.reflect.ClassPath
import kotlinx.coroutines.test.runTest
import okhttp3.OkHttpClient
import org.junit.jupiter.api.assertDoesNotThrow
import kotlin.reflect.KVisibility.PUBLIC
import kotlin.reflect.full.memberProperties
Expand All @@ -23,7 +24,7 @@ class DevelocityApiIntegrationTest {
val builds = api.buildsApi.getBuilds(
since = 0,
maxBuilds = 5,
query = """buildStartTime>-7d""""
query = """buildStartTime>-7d""",
)
assertEquals(5, builds.size)
api.shutdown()
Expand Down

0 comments on commit f3fb024

Please sign in to comment.