mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-20 21:44:06 +01:00
Linux: Fix SchemeHandlerTest.Custom*StandardNoResponse test failures
This commit is contained in:
parent
7efac13ac1
commit
103fe12b72
@ -212,9 +212,9 @@ class TestSchemeHandler : public TestHandler {
|
||||
else if (IsExitURL(url))
|
||||
return;
|
||||
|
||||
// Tests sometimes also fail with ERR_ABORTED.
|
||||
// Tests sometimes also fail with ERR_ABORTED or ERR_UNKNOWN_URL_SCHEME.
|
||||
if (!(test_results_->expected_error_code == 0 &&
|
||||
errorCode == ERR_ABORTED)) {
|
||||
(errorCode == ERR_ABORTED || errorCode == ERR_UNKNOWN_URL_SCHEME))) {
|
||||
EXPECT_EQ(test_results_->expected_error_code, errorCode)
|
||||
<< failedUrl.ToString();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user