Skip to content

Commit 0fad22a

Browse files
committed
fix test (regression)
1 parent c0a2553 commit 0fad22a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/htmlunit/html/HtmlEmailInputTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ private void validation(final String htmlPart, final String jsPart, final String
608608
if (sendKeys != null) {
609609
foo.sendKeys(sendKeys);
610610
}
611-
assertEquals(getExpectedAlerts()[0], foo.getDomAttribute("value"));
611+
assertEquals(getExpectedAlerts()[0], "" + foo.getDomAttribute("value"));
612612
assertEquals(getExpectedAlerts()[1], foo.getDomProperty("value"));
613613

614614
driver.findElement(By.id("myTest")).click();

0 commit comments

Comments
 (0)