Skip to content

Commit 600b4c9

Browse files
dependabot[bot]VanRoy
authored andcommitted
Bump assertj-core from 3.16.1 to 3.17.2
Bumps [assertj-core](https://github.com/joel-costigliola/assertj-core) from 3.16.1 to 3.17.2. - [Release notes](https://github.com/joel-costigliola/assertj-core/releases) - [Commits](assertj/assertj@assertj-core-3.16.1...assertj-core-3.17.2) Signed-off-by: dependabot[bot] <[email protected]>
1 parent e7e42b2 commit 600b4c9

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.assertj</groupId>
4343
<artifactId>assertj-core</artifactId>
44-
<version>3.16.1</version>
44+
<version>3.17.2</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>net.bytebuddy</groupId>

src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_String_Test.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -447,10 +447,10 @@ public void should_fail_because_values_are_different() throws Exception {
447447
Assertions.assertThat(e.getMessage())
448448
.isEqualTo(String.format("[Column at index 7 (column name : VAR8) of TEST table] %n"
449449
+ "Expecting:%n"
450-
+ " <[09:46:30.000000000,%n"
451-
+ " 12:29:49.000000000,%n"
452-
+ " 12:29:49.000000000,%n"
453-
+ " 12:29:49.000000000]>%n"
450+
+ " <[09:46:30.000000000, "
451+
+ "12:29:49.000000000, "
452+
+ "12:29:49.000000000, "
453+
+ "12:29:49.000000000]>%n"
454454
+ "to contain: %n"
455455
+ " <[\"12:29:49\", \"12:29:49\", \"12:29:49\", \"12:29:49\"]>%n"
456456
+ " (parameter <\"12:29:49\"> at index 3 is not found)"));
@@ -550,8 +550,8 @@ public void should_fail_because_values_are_different() throws Exception {
550550
+ "Expecting:%n"
551551
+ " <[30b443ae-c0c9-4790-9bec-ce1380808435, null]>%n"
552552
+ "to contain: %n"
553-
+ " <[\"30B443AE-C0C9-4790-9BEC-CE1380808435\",%n"
554-
+ " \"30B443AE-C0C9-4790-9BEC-CE1380808435\"]>%n"
553+
+ " <[\"30B443AE-C0C9-4790-9BEC-CE1380808435\", "
554+
+ "\"30B443AE-C0C9-4790-9BEC-CE1380808435\"]>%n"
555555
+ " (parameter <\"30B443AE-C0C9-4790-9BEC-CE1380808435\"> at index 1 is not found)"));
556556
}
557557

@@ -566,8 +566,8 @@ public void should_fail_because_values_are_different() throws Exception {
566566
+ "Expecting:%n"
567567
+ " <[30b443ae-c0c9-4790-9bec-ce1380808435, null]>%n"
568568
+ "to contain: %n"
569-
+ " <[\"88838129-291E-40A9-A94C-A15BE36CF7C3\",%n"
570-
+ " \"30B443AE-C0C9-4790-9BEC-CE1380808435\"]>%n"
569+
+ " <[\"88838129-291E-40A9-A94C-A15BE36CF7C3\", "
570+
+ "\"30B443AE-C0C9-4790-9BEC-CE1380808435\"]>%n"
571571
+ " (parameter <\"88838129-291E-40A9-A94C-A15BE36CF7C3\"> at index 0 is not found)"));
572572
}
573573
}

src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_TimeValue_Test.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ public void should_fail_because_values_are_different() throws Exception {
6666
} catch (AssertionError e) {
6767
Assertions.assertThat(e.getMessage()).isEqualTo(String.format("[Column at index 7 (column name : VAR8) of TEST table] %n"
6868
+ "Expecting:%n"
69-
+ " <[09:46:30.000000000,%n"
70-
+ " 12:29:49.000000000,%n"
71-
+ " 12:29:49.000000000,%n"
72-
+ " 12:29:49.000000000]>%n"
69+
+ " <[09:46:30.000000000, "
70+
+ "12:29:49.000000000, "
71+
+ "12:29:49.000000000, "
72+
+ "12:29:49.000000000]>%n"
7373
+ "to contain: %n"
74-
+ " <[12:29:49.000000000,%n"
75-
+ " 12:29:49.000000000,%n"
76-
+ " 12:29:49.000000000,%n"
77-
+ " 12:29:49.000000000]>%n"
74+
+ " <[12:29:49.000000000, "
75+
+ "12:29:49.000000000, "
76+
+ "12:29:49.000000000, "
77+
+ "12:29:49.000000000]>%n"
7878
+ " (parameter <12:29:49.000000000> at index 3 is not found)"));
7979
}
8080
Table table2 = new Table(source, "test2");

0 commit comments

Comments
 (0)