@@ -114,7 +114,9 @@ public void testBasicDeploy(DeployMojo mojo) throws Exception {
114
114
new ArtifactStub ("org.apache.maven.test" , "maven-deploy-test" , "" , "1.0-SNAPSHOT" , "jar" ),
115
115
new ArtifactStub ("org.apache.maven.test" , "maven-deploy-test" , "" , "1.0-SNAPSHOT" , "pom" ))),
116
116
artifacts );
117
- assertEquals (getBasedir ().replace (File .separator , "/" ), request .getRepository ().getUrl ());
117
+ assertEquals (
118
+ getBasedir ().replace (File .separator , "/" ),
119
+ request .getRepository ().getUrl ());
118
120
}
119
121
120
122
@ Test
@@ -156,7 +158,9 @@ public void testBasicDeployWithPackagingAsPom(DeployMojo mojo) throws Exception
156
158
Collections .singleton (
157
159
new ArtifactStub ("org.apache.maven.test" , "maven-deploy-test" , "" , "1.0-SNAPSHOT" , "pom" )),
158
160
artifacts );
159
- assertEquals (getBasedir ().replace (File .separator , "/" ), request .getRepository ().getUrl ());
161
+ assertEquals (
162
+ getBasedir ().replace (File .separator , "/" ),
163
+ request .getRepository ().getUrl ());
160
164
}
161
165
162
166
@ Test
@@ -194,7 +198,9 @@ public void testDeployWithAttachedArtifacts(DeployMojo mojo) throws Exception {
194
198
new ArtifactStub (
195
199
"org.apache.maven.test" , "attached-artifact-test" , "" , "1.0-SNAPSHOT" , "jar" ))),
196
200
artifacts );
197
- assertEquals (getBasedir ().replace (File .separator , "/" ), request .getRepository ().getUrl ());
201
+ assertEquals (
202
+ getBasedir ().replace (File .separator , "/" ),
203
+ request .getRepository ().getUrl ());
198
204
}
199
205
200
206
@ Test
0 commit comments