Skip to content
This repository was archived by the owner on Jul 31, 2020. It is now read-only.

Commit d48f199

Browse files
committed
update
1 parent e52f70e commit d48f199

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/cn/javaer/snippets/spring/boot/autoconfigure/data/jooq/jdbc/JooqJdbcRepositoriesAutoConfigurationTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ void jsonbTest() {
5050
jsonb2.put("k2", "v2");
5151
repository.save(new Demo(jsonb1, jsonb2));
5252
final Iterable<Demo> demos = repository.findAll();
53-
assertThat(demos).hasSize(1)
54-
.extracting(Demo::getJsonb1, Demo::getJsonb2);
53+
assertThat(demos).hasSize(1);
5554
});
5655
}
5756

0 commit comments

Comments
 (0)