Skip to content

Commit

Permalink
test(ClickListener): JMenuItem is a AbstractButton as well
Browse files Browse the repository at this point in the history
See issue #515
  • Loading branch information
RalfBarkow committed May 23, 2024
1 parent 10a9822 commit e222ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/playground/ClickListenerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void testTextFieldAction() {

// Verify log message
String logContent = logArea.getText();
assertTrue(logContent.contains("Action event on text field: Test TextField"));
assertTrue(logContent.contains("Action event on text field: Test TextField")); //FIXME JMenuItem is a AbstractButton as well
}

@Test
Expand Down

0 comments on commit e222ae0

Please sign in to comment.