You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2018/08/10 15:28:01 UTC

[flink] 01/03: [FLINK-10105][hotfix][docs] Fixed documentation completeness test

This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a commit to branch release-1.6
in repository https://gitbox.apache.org/repos/asf/flink.git

commit fbcc4965b77488aca65ae833c09b85a7f3c79272
Author: Dawid Wysakowicz <dw...@apache.org>
AuthorDate: Thu Aug 9 09:54:35 2018 +0200

    [FLINK-10105][hotfix][docs] Fixed documentation completeness test
---
 .../flink/docs/configuration/ConfigOptionsDocsCompletenessITCase.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/flink-docs/src/test/java/org/apache/flink/docs/configuration/ConfigOptionsDocsCompletenessITCase.java b/flink-docs/src/test/java/org/apache/flink/docs/configuration/ConfigOptionsDocsCompletenessITCase.java
index 264d2ed..25ce3dc 100644
--- a/flink-docs/src/test/java/org/apache/flink/docs/configuration/ConfigOptionsDocsCompletenessITCase.java
+++ b/flink-docs/src/test/java/org/apache/flink/docs/configuration/ConfigOptionsDocsCompletenessITCase.java
@@ -171,6 +171,7 @@ public class ConfigOptionsDocsCompletenessITCase {
 
 	private static Collection<DocumentedOption> parseDocumentedOptionsFromFile(Path file) throws IOException {
 		Document document = Jsoup.parse(file.toFile(), StandardCharsets.UTF_8.name());
+		document.outputSettings().prettyPrint(false);
 		return document.getElementsByTag("table").stream()
 			.map(element -> element.getElementsByTag("tbody").get(0))
 			.flatMap(element -> element.getElementsByTag("tr").stream())