resolved conflicts

This commit is contained in:
Julius Krah 2016-07-07 21:49:14 +00:00
commit c9865a0dd4
4 changed files with 2 additions and 2 deletions

View File

@ -10,4 +10,5 @@ public class DemoApplication {
System.setProperty("spring.config.name", "demo"); System.setProperty("spring.config.name", "demo");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }
} }

View File

@ -36,5 +36,4 @@ public class Foo implements Serializable {
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }
} }

View File

@ -14,5 +14,4 @@ public class DemoApplicationTests {
@Test @Test
public void contextLoads() { public void contextLoads() {
} }
} }

View File

@ -30,4 +30,5 @@ public class FooRepositoryTest extends DemoApplicationTests {
assertThat(foo, notNullValue()); assertThat(foo, notNullValue());
assertThat(foo.getId(), is(2)); assertThat(foo.getId(), is(2));
} }
} }