From fc7e765ace85c660f7ae54ba68ba8972a4df2d24 Mon Sep 17 00:00:00 2001 From: pbansal Date: Fri, 13 Dec 2019 12:08:10 +0530 Subject: [PATCH] 8235744: PIT: test/jdk/javax/swing/text/html/TestJLabelWithHTMLText.java times out in linux-x64 Reviewed-by: psadhukhan, prr --- test/javax/swing/text/html/TestJLabelWithHTMLText.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/javax/swing/text/html/TestJLabelWithHTMLText.java b/test/javax/swing/text/html/TestJLabelWithHTMLText.java index eec9e6c93..6fa70df83 100644 --- a/test/javax/swing/text/html/TestJLabelWithHTMLText.java +++ b/test/javax/swing/text/html/TestJLabelWithHTMLText.java @@ -23,7 +23,7 @@ /** * @test - * @bug 8230235 + * @bug 8230235 8235744 * @summary Tests if JLabel with HTML text having empty img tag and * documentBaseKey set renders properly without NPE * @run main TestJLabelWithHTMLText @@ -41,7 +41,7 @@ public class TestJLabelWithHTMLText { JLabel label = new JLabel(); try { label.putClientProperty(BasicHTML.documentBaseKey, - new URL("https://www.google.com")); + new URL("http://localhost")); } catch (MalformedURLException e) { e.printStackTrace(); } -- GitLab