File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/org/gitlab4j/api Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public class HelperUtils {
27
27
if (propertiesFile .exists ()) {
28
28
try (InputStream input = new FileInputStream (propertiesFile )) {
29
29
testProperties .load (input );
30
- System .out .println ("Loaded base test properties from: " + propertiesFile .getAbsolutePath ());
30
+ System .out .format ("Loaded base test properties from: %n%s%n" , propertiesFile .getAbsolutePath ());
31
31
propertiesLoaded = true ;
32
32
} catch (IOException ioe ) {
33
33
System .err .println ("Error loading base test properties, error=" + ioe .getMessage ());
@@ -39,7 +39,7 @@ public class HelperUtils {
39
39
if (propertiesFile .exists ()) {
40
40
try (InputStream input = new FileInputStream (propertiesFile )) {
41
41
testProperties .load (input );
42
- System .out .println ("Loaded overriding test properties from: " + propertiesFile .getAbsolutePath ());
42
+ System .out .format ("Loaded overriding test properties from: %n%s%n" , propertiesFile .getAbsolutePath ());
43
43
propertiesLoaded = true ;
44
44
} catch (IOException ioe ) {
45
45
System .err .println ("Error loading overriding test properties, error=" + ioe .getMessage ());
You can’t perform that action at this time.
0 commit comments