Skip to content

Commit

Permalink
better chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
azvegint committed Mar 11, 2024
1 parent 04f14ae commit b43ce26
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/jdk/java/awt/FileDialog/RegexpFilterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ public class RegexpFilterTest {
""";

public static void main(String[] args) throws Exception {

PassFailJFrame passFailJFrame = new PassFailJFrame.Builder()
new PassFailJFrame.Builder()
.title("RegexpFilterTest Instructions")
.instructions(INSTRUCTIONS)
.splitUIRight(() -> {
Expand All @@ -68,8 +67,7 @@ public static void main(String[] args) throws Exception {
})
.rows(15)
.columns(40)
.build();

passFailJFrame.awaitAndCheck();
.build()
.awaitAndCheck();
}
}

0 comments on commit b43ce26

Please sign in to comment.