Skip to content

Commit

Permalink
[trivial] Fix a test that failed only because we updated some text ou…
Browse files Browse the repository at this point in the history
…tput.
  • Loading branch information
rzwitserloot committed Sep 17, 2023
1 parent 65773f5 commit af05813
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions test/configuration/resource/configurationRoot/out.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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_
Expand Down Expand Up @@ -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.
Expand All @@ -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
clear lombok.copyableAnnotations
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit af05813

Please sign in to comment.