From: <rb...@us...> - 2018-05-31 07:41:19
|
Revision: 15297 http://sourceforge.net/p/htmlunit/code/15297 Author: rbri Date: 2018-05-31 07:41:16 +0000 (Thu, 31 May 2018) Log Message: ----------- work on ff60 expectations Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/ErrorOutputChecker.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/ErrorOutputChecker.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/ErrorOutputChecker.java 2018-05-31 07:37:14 UTC (rev 15296) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/ErrorOutputChecker.java 2018-05-31 07:41:16 UTC (rev 15297) @@ -57,7 +57,13 @@ Pattern.compile(".*Listening on http://localhost:\\d*/ \r\r?\n"), // edge Pattern.compile(".*Stopping server.\r\r?\n"), - Pattern.compile(".*ProtocolHandshake createSession\r?\n(INFO|INFORMATION): Detected dialect: .*\r?\n") + Pattern.compile(".*ProtocolHandshake createSession\r?\n(INFO|INFORMATION): Detected dialect: .*\r?\n"), + + // FF60 output + Pattern.compile("Unable to read VR Path Registry from .*\r\r?\n"), + Pattern.compile("JavaScript warning: .*: String.toLowerCase is deprecated;" + + " use String.prototype.toLowerCase instead\r\r?\n") + }; /** |