Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jan 5, 2024
1 parent 2ffc731 commit 72d6ca0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/htmlunit/javascript/regexp/RegExpTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ public void stickyAndGlobal() throws Exception {
* @throws Exception if an error occurs
*/
@Test
@Alerts(DEFAULT = {"1", "a\na"})
@Alerts({"1", "a\na"})
public void dotAll() throws Exception {
final String script =
"var result = 'a\\naba'.match(/a.a/s);\n"
Expand All @@ -404,7 +404,7 @@ public void dotAll() throws Exception {
* @throws Exception if an error occurs
*/
@Test
@Alerts(DEFAULT = {"1", "a\na"})
@Alerts({"1", "a\na"})
public void dotAllAndGlobal() throws Exception {
final String script =
"var result = 'a\\naba'.match(/a.a/sg);\n"
Expand Down

0 comments on commit 72d6ca0

Please sign in to comment.