Skip to content

Commit

Permalink
Fix intellij warnings (#7734)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored Feb 6, 2023
1 parent b17f20c commit 7993ef2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ dependencies {

tasks {
withType<Test>().configureEach {
systemProperty("testLatestDeps", findProperty("testLatestDeps"))
systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ tasks {
}

withType<Test>().configureEach {
systemProperty("testLatestDeps", findProperty("testLatestDeps"))
systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
jvmArgs("-Dotel.instrumentation.spring-batch.enabled=true")
// TODO run tests both with and without experimental span attributes
jvmArgs("-Dotel.instrumentation.spring-batch.experimental-span-attributes=true")
Expand Down

0 comments on commit 7993ef2

Please sign in to comment.