Skip to content

Commit 2c00d74

Browse files
committedAug 7, 2020
8251187: Mark BasicComboNPE regression test as headful
Reviewed-by: prr
1 parent c32923e commit 2c00d74

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎test/jdk/javax/swing/plaf/basic/BasicComboBoxUI/BasicComboNPE.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*/
2323

2424
/* @test
25+
@key headful
2526
@bug 6709913
2627
@summary Verifies BasicComboBoxUI.isPopupVisible does not return NPE
2728
@run main BasicComboNPE
@@ -52,7 +53,7 @@ public static void main(String[] args) {
5253
@Override
5354
public ComboBoxModel getModel()
5455
{
55-
setPopupVisible(true);
56+
setPopupVisible(false);
5657
isPopupVisible();
5758
return super.getModel();
5859
}

0 commit comments

Comments
 (0)
Please sign in to comment.