Skip to content

Commit 3ea464e

Browse files
Addresses line length in test
Ensures line length consistency in tests for better readability
1 parent 385ea88 commit 3ea464e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jib-maven-plugin/src/test/java/com/google/cloud/tools/jib/maven/JibPluginConfigurationTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ public void testSystemPropertiesOutputPaths() {
206206
sessionSystemProperties.put("jib.outputPaths.digest", "/digest/path");
207207
assertThat(testPluginConfiguration.getDigestOutputPath()).isEqualTo(Paths.get("/digest/path"));
208208
sessionSystemProperties.put("jib.outputPaths.imageTagDigest", "/image-tag-digest/path");
209-
assertThat(testPluginConfiguration.getImageTagDigestOutputPath()).isEqualTo(Paths.get("/image-tag-digest/path"));
209+
assertThat(testPluginConfiguration.getImageTagDigestOutputPath())
210+
.isEqualTo(Paths.get("/image-tag-digest/path"));
210211
sessionSystemProperties.put("jib.outputPaths.imageId", "/id/path");
211212
assertThat(testPluginConfiguration.getImageIdOutputPath()).isEqualTo(Paths.get("/id/path"));
212213
sessionSystemProperties.put("jib.outputPaths.tar", "/tar/path");
@@ -217,7 +218,7 @@ public void testSystemPropertiesOutputPaths() {
217218
.isEqualTo(Paths.get("/repository/project/digest/path"));
218219
sessionSystemProperties.put("jib.outputPaths.imageTagDigest", "image-tag-digest/path");
219220
assertThat(testPluginConfiguration.getImageTagDigestOutputPath())
220-
.isEqualTo(Paths.get("/repository/project/image-tag-digest/path"));
221+
.isEqualTo(Paths.get("/repository/project/image-tag-digest/path"));
221222
sessionSystemProperties.put("jib.outputPaths.imageId", "id/path");
222223
assertThat(testPluginConfiguration.getImageIdOutputPath())
223224
.isEqualTo(Paths.get("/repository/project/id/path"));

0 commit comments

Comments
 (0)