Skip to content

Commit a2901d1

Browse files
committed
Ignore a test case with timeout. It sometimes fails on Travis recently.
1 parent 54a0e70 commit a2901d1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test/java/org/apache/ibatis/parsing/GenericTokenParserTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
package org.apache.ibatis.parsing;
1717

1818
import static org.junit.Assert.assertEquals;
19+
20+
import org.junit.Ignore;
1921
import org.junit.Test;
2022

2123
import java.util.HashMap;
@@ -82,6 +84,7 @@ public void shallNotInterpolateSkippedVaiables() {
8284
assertEquals("The null is ${skipped} variable", parser.parse("The ${skipped} is \\${skipped} variable"));
8385
}
8486

87+
@Ignore("Because it randomly fails on Travis CI. It could be useful during development.")
8588
@Test(timeout = 1000)
8689
public void shouldParseFastOnJdk7u6() {
8790
// issue #760

0 commit comments

Comments
 (0)