diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-02-01 06:52:52 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-02-01 06:53:10 +0100 |
commit | e5860edabe31f3b6ceabd91f9cbcadf3d4d0315a (patch) | |
tree | b1d52306c826f384aed0ff9228029feb3f0ff88d /test/core | |
parent | a6170f5298daf42931877a2d9c98e6f2ad1985be (diff) | |
download | lombok-e5860edabe31f3b6ceabd91f9cbcadf3d4d0315a.tar.gz lombok-e5860edabe31f3b6ceabd91f9cbcadf3d4d0315a.tar.bz2 lombok-e5860edabe31f3b6ceabd91f9cbcadf3d4d0315a.zip |
Fixed issues with val in inner classes, and re-enabled a test that caught it that we ignored earlier.
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/src/lombok/LombokTestSource.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/core/src/lombok/LombokTestSource.java b/test/core/src/lombok/LombokTestSource.java index 9b5607ef..c686bf19 100644 --- a/test/core/src/lombok/LombokTestSource.java +++ b/test/core/src/lombok/LombokTestSource.java @@ -183,6 +183,8 @@ public class LombokTestSource { continue; } + if (lc.startsWith("issue ")) continue; + Assert.fail("Directive line \"" + directive + "\" in '" + file.getAbsolutePath() + "' invalid: unrecognized directive."); throw new RuntimeException(); } |