Typo in method names.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1424252 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3c60c05fd4
commit
db71bca960
|
@ -130,12 +130,12 @@ public class DSCompilerTest {
|
|||
}
|
||||
|
||||
@Test(expected=DimensionMismatchException.class)
|
||||
public void testIncompatbileParams() {
|
||||
public void testIncompatibleParams() {
|
||||
DSCompiler.getCompiler(3, 2).checkCompatibility(DSCompiler.getCompiler(4, 2));
|
||||
}
|
||||
|
||||
@Test(expected=DimensionMismatchException.class)
|
||||
public void testIncompatbileOrder() {
|
||||
public void testIncompatibleOrder() {
|
||||
DSCompiler.getCompiler(3, 3).checkCompatibility(DSCompiler.getCompiler(3, 2));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue