Skip to content

Commit

Permalink
8289559: java/awt/a11y/AccessibleJPopupMenuTest.java test fails with …
Browse files Browse the repository at this point in the history
…java.lang.NullPointerException

Reviewed-by: serb
  • Loading branch information
lawrence-andrew authored and prrace committed Jul 13, 2022
1 parent c83fcbd commit 3216d19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/jdk/java/awt/a11y/AccessibleJPopupMenuTest.java
Expand Up @@ -93,7 +93,7 @@ public void actionPerformed(ActionEvent e) {
public static void main(String[] args) throws Exception {
AccessibleJPopupMenuTest a11yTest = new AccessibleJPopupMenuTest();

CountDownLatch countDownLatch = a11yTest.createCountDownLatch();
countDownLatch = a11yTest.createCountDownLatch();
SwingUtilities.invokeLater(a11yTest::createTest);
countDownLatch.await();

Expand Down

3 comments on commit 3216d19

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GoeLin
Copy link
Member

@GoeLin GoeLin commented on 3216d19 Sep 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk17u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 3216d19 Sep 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GoeLin the backport was successfully created on the branch GoeLin-backport-3216d198 in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 3216d198 from the openjdk/jdk repository.

The commit being backported was authored by lawrence.andrews on 13 Jul 2022 and was reviewed by Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk17u-dev:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev GoeLin-backport-3216d198:GoeLin-backport-3216d198
$ git checkout GoeLin-backport-3216d198
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev GoeLin-backport-3216d198

Please sign in to comment.