Skip to content

Commit 146c960

Browse files
committed
Fixing checkstyle
1 parent 2c175df commit 146c960

1 file changed

Lines changed: 19 additions & 2 deletions

File tree

spring-cloud-contract-stub-runner/src/test/java/org/springframework/cloud/contract/stubrunner/AetherFactoriesTests.java

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2013-present the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package org.springframework.cloud.contract.stubrunner;
218

319
import org.eclipse.aether.connector.basic.BasicRepositoryConnectorFactory;
@@ -14,7 +30,8 @@ public class AetherFactoriesTests {
1430

1531
@Test
1632
public void should_match_fqn_of_basic_repository_connector_factory() {
17-
then(AetherFactories.BASIC_REPOSITORY_CONNECTOR_FACTORY_FQN).isEqualTo(BasicRepositoryConnectorFactory.class.getName());
33+
then(AetherFactories.BASIC_REPOSITORY_CONNECTOR_FACTORY_FQN)
34+
.isEqualTo(BasicRepositoryConnectorFactory.class.getName());
1835
}
1936

2037
@Test
@@ -27,4 +44,4 @@ public void should_match_fqn_of_http_transporter_factory() {
2744
then(AetherFactories.HTTP_TRANSPORTER_FACTORY_FQN).isEqualTo(HttpTransporterFactory.class.getName());
2845
}
2946

30-
}
47+
}

0 commit comments

Comments
 (0)