Skip to content

Commit a77eed9

Browse files
committed
Format
1 parent 7198a19 commit a77eed9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doma-spring-boot-autoconfigure/src/test/java/org/seasar/doma/boot/autoconfigure/DomaAutoConfigurationTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,9 @@ public void testSQLExceptionTranslator() {
168168
{
169169
// Translated by SQLErrorCodeSQLExceptionTranslator
170170
DataAccessException dataAccessException = translator
171-
.translateExceptionIfPossible(
172-
new JdbcException(Message.DOMA2008, new SQLException(
173-
"Acquire Lock on H2", "SqlState", 50200, null)));
171+
.translateExceptionIfPossible(new JdbcException(Message.DOMA2008,
172+
new SQLException("Acquire Lock on H2", "SqlState", 50200,
173+
null)));
174174
assertThat(dataAccessException,
175175
is(instanceOf(CannotAcquireLockException.class)));
176176
}

doma-spring-boot-samples/doma-spring-boot-sample-entity-listener/src/test/java/org/seasar/doma/boot/DomaBootSampleSimpleApplicationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
@RunWith(SpringRunner.class)
3535
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
3636
public class DomaBootSampleSimpleApplicationTest {
37-
TestRestTemplate restTemplate = new TestRestTemplate();
37+
TestRestTemplate restTemplate = new TestRestTemplate();
3838
ParameterizedTypeReference<List<Message>> typedReference = new ParameterizedTypeReference<List<Message>>() {
3939
};
4040
@Value("${local.server.port}")

doma-spring-boot-samples/doma-spring-boot-sample-simple/src/test/java/org/seasar/doma/boot/DomaBootSampleSimpleApplicationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
@RunWith(SpringRunner.class)
3434
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
3535
public class DomaBootSampleSimpleApplicationTest {
36-
TestRestTemplate restTemplate = new TestRestTemplate();
36+
TestRestTemplate restTemplate = new TestRestTemplate();
3737
ParameterizedTypeReference<List<Message>> typedReference = new ParameterizedTypeReference<List<Message>>() {
3838
};
3939
@Value("${local.server.port}")

0 commit comments

Comments
 (0)