Update unit test for LocalizedFormats after removing the deprecated one.

This commit is contained in:
tn 2015-02-19 10:20:51 +01:00
parent 6d50174baa
commit d746a54c2e
1 changed files with 1 additions and 2 deletions

View File

@ -22,7 +22,6 @@ import java.util.Enumeration;
import java.util.Locale;
import java.util.ResourceBundle;
import org.apache.commons.math4.exception.util.LocalizedFormats;
import org.junit.Assert;
import org.junit.Test;
@ -30,7 +29,7 @@ public class LocalizedFormatsTest {
@Test
public void testMessageNumber() {
Assert.assertEquals(322, LocalizedFormats.values().length);
Assert.assertEquals(321, LocalizedFormats.values().length);
}
@Test