Skip to content

Commit

Permalink
chore(deps-dev): Bump com.willowtreeapps.assertk:assertk-jvm from 0.2…
Browse files Browse the repository at this point in the history
…6.1 to 0.27.0 (#627)

* chore(deps-dev): Bump com.willowtreeapps.assertk:assertk-jvm

Bumps [com.willowtreeapps.assertk:assertk-jvm](https://github.com/willowtreeapps/assertk) from 0.26.1 to 0.27.0.
- [Release notes](https://github.com/willowtreeapps/assertk/releases)
- [Changelog](https://github.com/willowtreeapps/assertk/blob/main/CHANGELOG.md)
- [Commits](willowtreeapps/assertk@v0.26.1...v0.27.0)

---
updated-dependencies:
- dependency-name: com.willowtreeapps.assertk:assertk-jvm
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: incompatible API

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jakub Bednar <jakub.bednar@gmail.com>
  • Loading branch information
dependabot[bot] and bednar authored Oct 6, 2023
1 parent 3573ce1 commit b5d6b20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Update dependencies:
- [#618](https://github.com/influxdata/influxdb-client-java/pull/618): `maven-enforcer-plugin` to `3.4.0`
- [#621](https://github.com/influxdata/influxdb-client-java/pull/621): `dokka-maven-plugin` to `1.9.0`
- [#628](https://github.com/influxdata/influxdb-client-java/pull/628): `versions-maven-plugin` to `2.16.1`
- [#627](https://github.com/influxdata/influxdb-client-java/pull/627): `assertk-jvm` to `0.27.0`

#### Test:
- [#620](https://github.com/influxdata/influxdb-client-java/pull/620): `logback-classic` to `1.3.11`
Expand Down
2 changes: 1 addition & 1 deletion client-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
<dependency>
<groupId>com.willowtreeapps.assertk</groupId>
<artifactId>assertk-jvm</artifactId>
<version>0.26.1</version>
<version>0.27.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
*/
package com.influxdb.client.kotlin

import assertk.assertFailure
import assertk.assertThat
import assertk.assertions.contains
import assertk.assertions.containsExactly
import assertk.assertions.hasSize
import assertk.assertions.isEmpty
import assertk.assertions.isEqualTo
import assertk.assertions.isFailure
import assertk.assertions.isInstanceOf
import assertk.assertions.isTrue
import assertk.assertions.startsWith
Expand Down Expand Up @@ -271,9 +271,9 @@ internal class ITQueryKotlinApi : AbstractITInfluxDBClientKotlin() {

val channel = clientNotRunning.getQueryKotlinApi().query(flux, organization.id)

assertThat {
assertFailure {
runBlocking { channel.toList() }
}.isFailure().isInstanceOf(ConnectException::class.java)
}.isInstanceOf(ConnectException::class.java)

assertThat(channel.isClosedForReceive).isTrue()
assertThat(channel.isClosedForSend).isTrue()
Expand Down Expand Up @@ -333,4 +333,4 @@ internal class ITQueryKotlinApi : AbstractITInfluxDBClientKotlin() {
@Column(name = "_time", timestamp = true)
internal var time: Instant? = null
}
}
}

0 comments on commit b5d6b20

Please sign in to comment.