Skip to content

Commit

Permalink
remove sysout
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Nov 13, 2021
1 parent 753bc9d commit a9eb988
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class CanonicalTest {

@TestFactory
public Iterable<DynamicTest> suite() throws Exception {
System.out.println(canonicalDir.getAbsolutePath());
// System.out.println(canonicalDir.getAbsolutePath());
outputDir.mkdirs();

final List<File> dataFiles = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public void headNamespace() throws Exception {
@Override
public void startElement(final String ns, final String name, final String qName, final Attributes atts) {
assertEquals("http://www.w3.org/1999/xhtml:" + name, ns + ":" + name);
System.out.println(ns + ":" + name);
++nbTags[0];
}
};
Expand Down

0 comments on commit a9eb988

Please sign in to comment.