We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef6b562 commit 71f73cbCopy full SHA for 71f73cb
1 file changed
src/test/java/org/htmlunit/cssparser/dom/HWBColorImplTest.java
@@ -58,8 +58,8 @@ public void constructByLUException() throws Exception {
58
assertEquals("hwb requires at least three values.", e.getMessage());
59
}
60
61
- LexicalUnit hwbLU = LexicalUnitImpl.createNumber(null, 10);
62
- LexicalUnit lu = LexicalUnitImpl.createDivide(hwbLU);
+ final LexicalUnit hwbLU = LexicalUnitImpl.createNumber(null, 10);
+ final LexicalUnit lu = LexicalUnitImpl.createDivide(hwbLU);
63
64
try {
65
final HWBColorImpl color = new HWBColorImpl("hwb", hwbLU);
0 commit comments