Index: LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-script-no-cors-no-xorigin-with-creds.html |
diff --git a/LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-script-no-cors-no-xorigin-with-creds.html b/LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-script-no-cors-no-xorigin-with-creds.html |
index 6e854c4972f871bbbed4176e8e46f51087e58706..ffc337db28282d42f246b1a6b05bae7e08e6134b 100644 |
--- a/LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-script-no-cors-no-xorigin-with-creds.html |
+++ b/LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-script-no-cors-no-xorigin-with-creds.html |
@@ -8,11 +8,11 @@ |
<script> |
var result = ''; |
var scriptLoaded = function() { |
- assert_equals(result, '', 'Script did not run.'); |
+ assert_unreached('Script ran.'); |
done(); |
}; |
var scriptError = function() { |
- assert_unreached(); |
+ assert_equals(result, '', 'Script did not run.'); |
done(); |
}; |
</script> |