mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-26 11:39:14 +00:00
Upgrade to spring-javaformat 0.0.11
This commit is contained in:
+2
-4
@@ -63,8 +63,7 @@ public class SampleDataGemFireApplicationTests {
|
||||
this.service.save(createGemstone("Pearl"));
|
||||
this.service.save(createGemstone("Sapphire"));
|
||||
assertThat(this.service.count()).isEqualTo(4);
|
||||
assertThat(this.service.list())
|
||||
.contains(getGemstones("Diamond", "Ruby", "Pearl", "Sapphire"));
|
||||
assertThat(this.service.list()).contains(getGemstones("Diamond", "Ruby", "Pearl", "Sapphire"));
|
||||
try {
|
||||
this.service.save(createGemstone("Quartz"));
|
||||
}
|
||||
@@ -72,8 +71,7 @@ public class SampleDataGemFireApplicationTests {
|
||||
// expected
|
||||
}
|
||||
assertThat(this.service.count()).isEqualTo(4);
|
||||
assertThat(this.service.list())
|
||||
.contains(getGemstones("Diamond", "Ruby", "Pearl", "Sapphire"));
|
||||
assertThat(this.service.list()).contains(getGemstones("Diamond", "Ruby", "Pearl", "Sapphire"));
|
||||
assertThat(this.service.get("Diamond")).isEqualTo(createGemstone("Diamond"));
|
||||
assertThat(this.service.get("Pearl")).isEqualTo(createGemstone("Pearl"));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user