[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests ParserTestCase.java,1.36,1.37
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-11-01 04:03:24
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests In directory sc8-pr-cvs1:/tmp/cvs-serv2709 Modified Files: ParserTestCase.java Log Message: Fixed all tests failing if case sensitivity was turned on. Mostly this involved comparing the output from toHtml() with the string passed to the parser. Now ParserTestCase does case sensitive comparisons. Index: ParserTestCase.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/ParserTestCase.java,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** ParserTestCase.java 26 Oct 2003 19:46:25 -0000 1.36 --- ParserTestCase.java 1 Nov 2003 04:03:21 -0000 1.37 *************** *** 56,60 **** public class ParserTestCase extends TestCase { ! static boolean mCaseInsensitiveComparisons = true; protected Parser parser; protected Node node []; --- 56,60 ---- public class ParserTestCase extends TestCase { ! static boolean mCaseInsensitiveComparisons = false; protected Parser parser; protected Node node []; |