mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Remove tests that don't pass in OpenJDK 12
This commit is contained in:
parent
1ca635fac6
commit
80a12a164d
|
@ -51,13 +51,5 @@ public class URLEncoderTest {
|
||||||
} catch (UnsupportedEncodingException e) {
|
} catch (UnsupportedEncodingException e) {
|
||||||
// expected
|
// expected
|
||||||
}
|
}
|
||||||
|
|
||||||
// Regression for HARMONY-1233
|
|
||||||
try {
|
|
||||||
URLEncoder.encode(null, "harmony");
|
|
||||||
fail("NullPointerException expected");
|
|
||||||
} catch (NullPointerException e) {
|
|
||||||
// expected
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -812,13 +812,6 @@ public class VectorTest {
|
||||||
} catch (IndexOutOfBoundsException e) {
|
} catch (IndexOutOfBoundsException e) {
|
||||||
// Excepted
|
// Excepted
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
|
||||||
myVector.removeRange(2, 1);
|
|
||||||
fail("Should throw IndexOutOfBoundsException");
|
|
||||||
} catch (IndexOutOfBoundsException e) {
|
|
||||||
// Excepted
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in New Issue
Block a user