8251187: Mark BasicComboNPE regression test as headful

Reviewed-by: prr
This commit is contained in:
Prasanta Sadhukhan 2020-08-07 09:21:46 +05:30
parent c32923e06f
commit 2c00d740d4

View File

@ -22,6 +22,7 @@
*/
/* @test
@key headful
@bug 6709913
@summary Verifies BasicComboBoxUI.isPopupVisible does not return NPE
@run main BasicComboNPE
@ -52,7 +53,7 @@ public class BasicComboNPE extends JComboBox
@Override
public ComboBoxModel getModel()
{
setPopupVisible(true);
setPopupVisible(false);
isPopupVisible();
return super.getModel();
}