fixed typos

Former-commit-id: 490de2990dab978493b27a8faf8ec6c40b97c6dc
This commit is contained in:
Jeremy Long
2014-01-12 07:35:03 -05:00
parent 41a31cdf4c
commit 9b04ceedf1
13 changed files with 46 additions and 50 deletions

View File

@@ -28,10 +28,10 @@ import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.junit.After;
import org.junit.AfterClass;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
import org.xml.sax.InputSource;
import org.xml.sax.XMLReader;
@@ -61,7 +61,7 @@ public class SuppressionHandlerTest {
}
/**
* Test of getSupressionRules method, of class SuppressionHandler.
* Test of getSuppressionRules method, of class SuppressionHandler.
*
* @throws Exception thrown if there is an exception....
*/
@@ -89,7 +89,7 @@ public class SuppressionHandlerTest {
xmlReader.parse(in);
List result = handler.getSupressionRules();
List result = handler.getSuppressionRules();
assertTrue(result.size() > 3);
}
}