@@ -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