We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc674db commit f66df8bCopy full SHA for f66df8b
src/test/java/org/infernus/idea/checkstyle/model/HTTPURLConfigurationLocationTest.java
@@ -99,7 +99,7 @@ public void handle(final HttpExchange exch) throws IOException {
99
status = 200;
100
break;
101
case "/delayed":
102
- waitFor(100);
+ waitFor();
103
response = "A delayed test response";
104
105
@@ -119,9 +119,9 @@ public void handle(final HttpExchange exch) throws IOException {
119
os.close();
120
}
121
122
- private void waitFor(final int millis) {
+ private void waitFor() {
123
try {
124
- Thread.sleep(millis);
+ Thread.sleep(100);
125
} catch (InterruptedException ignored) {
126
127
0 commit comments