diff --git a/test/configuration/resource/configurationRoot/out.txt b/test/configuration/resource/configurationRoot/out.txt index bcb468c2c9..b870d9bf51 100644 --- a/test/configuration/resource/configurationRoot/out.txt +++ b/test/configuration/resource/configurationRoot/out.txt @@ -10,7 +10,7 @@ lombok.accessors.chain = false # BASE/d1/d11/lombok.config (stopped bubbling): # 3: lombok.accessors.chain = false -# Strip this field prefix, like 'f' or 'm_', from the names of generated getters and setters. +# Strip this field prefix, like 'f' or 'm_', from the names of generated getters, setters, and with-ers. lombok.accessors.prefix += f # BASE/d1/d11/lombok.config (stopped bubbling): # 5: lombok.accessors.prefix += f @@ -50,7 +50,7 @@ clear lombok.accessors.chain # BASE/d1/d11/d111/lombok.config: # 3: clear lombok.accessors.chain -# Strip this field prefix, like 'f' or 'm_', from the names of generated getters and setters. +# Strip this field prefix, like 'f' or 'm_', from the names of generated getters, setters, and with-ers. lombok.accessors.prefix += e_ lombok.accessors.prefix += h_ lombok.accessors.prefix += z_ @@ -112,7 +112,7 @@ lombok.accessors.chain = true # BASE/d1/d12/lombok.config (stopped bubbling): # 3: lombok.accessors.chain = true -# Strip this field prefix, like 'f' or 'm_', from the names of generated getters and setters. +# Strip this field prefix, like 'f' or 'm_', from the names of generated getters, setters, and with-ers. clear lombok.accessors.prefix # Generate @javax.annotation.Generated on all generated code (default: false). Deprecated, use 'lombok.addJavaxGeneratedAnnotation' instead. @@ -128,4 +128,4 @@ clear lombok.anyConstructor.addConstructorProperties clear lombok.log.fieldName # Copy these annotations to getters, setters, with methods, builder-setters, etc. -clear lombok.copyableAnnotations \ No newline at end of file +clear lombok.copyableAnnotations diff --git a/test/configuration/src/lombok/core/configuration/TestConfiguration.java b/test/configuration/src/lombok/core/configuration/TestConfiguration.java index d2ceb5fce6..0cde4534be 100644 --- a/test/configuration/src/lombok/core/configuration/TestConfiguration.java +++ b/test/configuration/src/lombok/core/configuration/TestConfiguration.java @@ -76,7 +76,7 @@ public void testDisplayVerbose() throws Exception { private void checkContent(File dir, String actual, String type) throws Exception { String expected = fileToString(new File(dir, type + ".txt")).replace("\r", "").trim(); if (!expected.equals(actual)) { - System.out.printf("**** Expected %s:\n", type); + System.out.printf("**** Expected %s (@%s):\n", type, new File(dir, type + ".txt").getCanonicalPath()); System.out.println(expected); System.out.printf("**** Actual %s:\n", type); System.out.println(actual);