From 61cbad23bd23c85e3bf6bc30635518929f5a0554 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Sch=C3=A4fer?= Date: Sat, 24 Jan 2015 18:26:07 +0100 Subject: [PATCH] removed unneeded console output in test --- .../java/com/tngtech/jgiven/report/html5/ThenHtml5Report.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/jgiven-tests/src/test/java/com/tngtech/jgiven/report/html5/ThenHtml5Report.java b/jgiven-tests/src/test/java/com/tngtech/jgiven/report/html5/ThenHtml5Report.java index 57224155b9..c9a907ad02 100644 --- a/jgiven-tests/src/test/java/com/tngtech/jgiven/report/html5/ThenHtml5Report.java +++ b/jgiven-tests/src/test/java/com/tngtech/jgiven/report/html5/ThenHtml5Report.java @@ -6,7 +6,6 @@ import java.io.IOException; import java.net.URISyntaxException; import java.net.URL; -import java.util.Arrays; import java.util.List; import org.openqa.selenium.By; @@ -36,8 +35,6 @@ private List findAttachmentIcon() { public SELF the_content_of_the_referenced_attachment_is( String content ) throws IOException, URISyntaxException { String href = findAttachmentIcon().get( 0 ).findElement( By.xpath( ".." ) ).getAttribute( "href" ); - System.out.println( "==========" + href ); - System.out.println( Arrays.toString( targetReportDir.listFiles() ) ); String foundContent = Files.readFile( new File( new URL( href ).toURI() ) ).trim(); assertThat( content ).isEqualTo( foundContent ); return self();