Skip to content

Commit

Permalink
Bump kotest.version from 5.8.0 to 5.8.1 (#739)
Browse files Browse the repository at this point in the history
* Bump kotest.version from 5.8.0 to 5.8.1

Bumps `kotest.version` from 5.8.0 to 5.8.1.

Updates `io.kotest:kotest-assertions-shared-jvm` from 5.8.0 to 5.8.1
- [Release notes](https://github.com/kotest/kotest/releases)
- [Commits](kotest/kotest@v5.8.0...v5.8.1)

Updates `io.kotest:kotest-assertions-json-jvm` from 5.8.0 to 5.8.1
- [Release notes](https://github.com/kotest/kotest/releases)
- [Commits](kotest/kotest@v5.8.0...v5.8.1)

---
updated-dependencies:
- dependency-name: io.kotest:kotest-assertions-shared-jvm
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.kotest:kotest-assertions-json-jvm
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix test

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Krecan <[email protected]>
  • Loading branch information
dependabot[bot] and lukas-krecan authored Mar 12, 2024
1 parent 440a349 commit 26820a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion json-unit-kotest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<properties>
<kotlin.compiler.jvmTarget>17</kotlin.compiler.jvmTarget>
<osgi.exportPackage>net.javacrumbs.jsonunit.kotest</osgi.exportPackage>
<kotest.version>5.8.0</kotest.version>
<kotest.version>5.8.1</kotest.version>
</properties>

<parent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Different value found in node "$.test", expected: <2> but was: <1>."""
assertThrows<AssertionError> {
"""{"test": [1, 2, 3, 1]}""".inPath("test").shouldBeJsonArray().shouldNotContainDuplicates()
}
.shouldHaveMessage("""Collection should not contain duplicates""")
.shouldHaveMessage("""Collection should not contain duplicates, but has some: [1]""")
}

@Test
Expand Down

0 comments on commit 26820a4

Please sign in to comment.