diff options
author | Bulgakov Alexander <buls@yandex.ru> | 2019-04-25 23:35:01 +0300 |
---|---|---|
committer | Bulgakov Alexander <buls@yandex.ru> | 2019-04-25 23:35:01 +0300 |
commit | afe9e374975c85a87fdf6c0d45171ac44f616a37 (patch) | |
tree | d49b9f905a564729d5cdefa2f9626266b0b541f0 /test/core/src | |
parent | f0343886a331f3cb2175545a062f3736610f9179 (diff) | |
parent | 150be0a186d880503cb23d056ea4cf229ebc37e5 (diff) | |
download | lombok-afe9e374975c85a87fdf6c0d45171ac44f616a37.tar.gz lombok-afe9e374975c85a87fdf6c0d45171ac44f616a37.tar.bz2 lombok-afe9e374975c85a87fdf6c0d45171ac44f616a37.zip |
Merge branch 'master' into feature/typeInferenceImprovements
Diffstat (limited to 'test/core/src')
-rw-r--r-- | test/core/src/lombok/DirectoryRunner.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/src/lombok/DirectoryRunner.java b/test/core/src/lombok/DirectoryRunner.java index ea15cdb9..9410b4c7 100644 --- a/test/core/src/lombok/DirectoryRunner.java +++ b/test/core/src/lombok/DirectoryRunner.java @@ -91,7 +91,7 @@ public class DirectoryRunner extends Runner { public DirectoryRunner(Class<?> testClass) throws Exception { description = Description.createSuiteDescription(testClass); - this.params = (TestParams) testClass.newInstance(); + this.params = (TestParams) testClass.getConstructor().newInstance(); Throwable error = null; try { |