Skip to content

Commit 249cda2

Browse files
committed
code style
1 parent 4fe9000 commit 249cda2

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

src/test/java/org/htmlunit/archunit/ArchitectureTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ public class ArchitectureTest {
7676
.and().doNotHaveFullyQualifiedName("org.htmlunit.jetty.websocket.common.util.ReflectUtils")
7777
.and().doNotHaveFullyQualifiedName("org.htmlunit.jetty.websocket.common.util.TextUtil")
7878

79+
.and().resideOutsideOfPackage("org.htmlunit.corejs..")
80+
7981
.should().resideInAPackage("org.htmlunit.util");
8082

8183
/**

src/test/java/org/htmlunit/javascript/ArgumentsTest.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
import org.htmlunit.WebDriverTestCase;
1818
import org.htmlunit.junit.annotation.Alerts;
19+
import org.junit.jupiter.api.Disabled;
1920
import org.junit.jupiter.api.Test;
2021

2122
/**
@@ -1278,7 +1279,8 @@ public void argumentsIteratorStrict() throws Exception {
12781279
* Test spread operator on arguments.
12791280
* @throws Exception if the test fails
12801281
*/
1281-
// @Test
1282+
@Test
1283+
@Disabled
12821284
@Alerts("hello,world")
12831285
public void argumentsSpreadOperator() throws Exception {
12841286
final String html = DOCTYPE_HTML
@@ -1299,7 +1301,8 @@ public void argumentsSpreadOperator() throws Exception {
12991301
* Test spread operator on arguments.
13001302
* @throws Exception if the test fails
13011303
*/
1302-
// @Test
1304+
@Test
1305+
@Disabled
13031306
@Alerts("hello,world")
13041307
public void argumentsSpreadOperatorStrict() throws Exception {
13051308
final String html = DOCTYPE_HTML
@@ -1577,7 +1580,8 @@ public void argumentsInConstructorStrict() throws Exception {
15771580
* Test arguments in class method.
15781581
* @throws Exception if the test fails
15791582
*/
1580-
// @Test
1583+
@Test
1584+
@Disabled
15811585
@Alerts("2")
15821586
public void argumentsInClassMethod() throws Exception {
15831587
final String html = DOCTYPE_HTML

0 commit comments

Comments
 (0)