aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/com/puppycrawl/tools
diff options
context:
space:
mode:
authorDmytro Kytsmen <dmitrokytsmen@gmail.com>2017-05-02 12:07:17 +0300
committerRoman Ivanov <romani@users.noreply.github.com>2017-05-02 06:41:52 -0700
commitf5f66fad5c12bcef55056bd05d72ff6d0c6cf16f (patch)
treefb31244bd02937c91289b53e5469f7892ac42f45 /src/test/java/com/puppycrawl/tools
parentb1657f54b29b545959afe5465fa0fb80a08e9506 (diff)
downloadcheckstyle-f5f66fad5c12bcef55056bd05d72ff6d0c6cf16f.tar.gz
Issue #4165: Split and Organize Checkstyle inputs by Test for checks in coding package: IllegalThrows
Diffstat (limited to 'src/test/java/com/puppycrawl/tools')
-rw-r--r--src/test/java/com/puppycrawl/tools/checkstyle/checks/coding/IllegalThrowsCheckTest.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/java/com/puppycrawl/tools/checkstyle/checks/coding/IllegalThrowsCheckTest.java b/src/test/java/com/puppycrawl/tools/checkstyle/checks/coding/IllegalThrowsCheckTest.java
index 880085aef..e40f401e9 100644
--- a/src/test/java/com/puppycrawl/tools/checkstyle/checks/coding/IllegalThrowsCheckTest.java
+++ b/src/test/java/com/puppycrawl/tools/checkstyle/checks/coding/IllegalThrowsCheckTest.java
@@ -35,7 +35,9 @@ public class IllegalThrowsCheckTest extends BaseCheckTestSupport {
@Override
protected String getPath(String filename) throws IOException {
return super.getPath("checks" + File.separator
- + "coding" + File.separator + filename);
+ + "coding" + File.separator
+ + "illegalthrows" + File.separator
+ + filename);
}
@Test