Skip to content

Commit

Permalink
chore(deps): bump com.diffplug.spotless:spotless-maven-plugin from 2.…
Browse files Browse the repository at this point in the history
…43.0 to 2.44.1 in /dhis-2/dhis-test-e2e (#19614)

* chore(deps): bump com.diffplug.spotless:spotless-maven-plugin

Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.43.0 to 2.44.1.
- [Release notes](https://github.com/diffplug/spotless/releases)
- [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md)
- [Commits](diffplug/spotless@lib/2.43.0...maven/2.44.1)

---
updated-dependencies:
- dependency-name: com.diffplug.spotless:spotless-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* fix: Format code

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Enrico <[email protected]>
  • Loading branch information
dependabot[bot] and enricocolasante authored Jan 13, 2025
1 parent 747f26b commit bb784d0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dhis-2/dhis-test-e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<properties>
<rootDir>..</rootDir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spotless.version>2.43.0</spotless.version>
<spotless.version>2.44.1</spotless.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
<maven-surefire-junit5-tree-reporter.version>1.4.0</maven-surefire-junit5-tree-reporter.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ void testUpdateEntry_RootWithNonNullValue() {
userDatastoreActions
.update(
"/" + NAMESPACE + "/key7",
toJsonObject("""
toJsonObject(
"""
{"a": 11}
"""))
.validate()
Expand All @@ -101,7 +102,8 @@ void testUpdateEntry_RootWithNonNullValue() {
userDatastoreActions
.update(
"/" + NAMESPACE + "/key7",
toJsonObject("""
toJsonObject(
"""
{"a": 99}
"""))
.validate()
Expand All @@ -122,7 +124,8 @@ void testUpdateEntry_PathWithNullValue() {
userDatastoreActions
.update(
"/" + NAMESPACE + "/key6",
toJsonObject("""
toJsonObject(
"""
{"a": 42}
"""))
.validate()
Expand All @@ -146,7 +149,8 @@ void testUpdateEntry_PathWithNonNullValue() {
userDatastoreActions
.update(
"/" + NAMESPACE + "/key5",
toJsonObject("""
toJsonObject(
"""
{"a": 11}
"""))
.validate()
Expand Down Expand Up @@ -277,7 +281,8 @@ void testUpdateEntry_RollPathValueIsNull() {
userDatastoreActions
.update(
"/" + NAMESPACE + "/key55",
toJsonObject("""
toJsonObject(
"""
{"a": null}
"""))
.validate()
Expand All @@ -304,7 +309,8 @@ void testUpdateEntry_RollPathValueIsUndefined() {
userDatastoreActions
.update(
"/" + NAMESPACE + "/key24",
toJsonObject("""
toJsonObject(
"""
{"a": null}
"""))
.validate()
Expand Down Expand Up @@ -332,7 +338,8 @@ void testUpdateEntry_RollPathValueIsArray() {
userDatastoreActions
.update(
"/" + NAMESPACE + "/key2",
toJsonObject("""
toJsonObject(
"""
{"a":{"b":[]}}
"""))
.validate()
Expand Down Expand Up @@ -399,7 +406,8 @@ void testUpdateEntry_RollPathValueIsOther() {
userDatastoreActions
.update(
"/" + NAMESPACE + "/key3",
toJsonObject("""
toJsonObject(
"""
{"a":[{}]}
"""))
.validate()
Expand Down

0 comments on commit bb784d0

Please sign in to comment.