| Index: mojo/public/js/bindings/validation_unittests.js
|
| diff --git a/mojo/public/js/bindings/validation_unittests.js b/mojo/public/js/bindings/validation_unittests.js
|
| index 73fd9c7142450e7423c881e76509d57cbf4a817d..59aeb59e7f68d6defc672bc5d3b8f1eefd21180d 100644
|
| --- a/mojo/public/js/bindings/validation_unittests.js
|
| +++ b/mojo/public/js/bindings/validation_unittests.js
|
| @@ -246,12 +246,12 @@ define([
|
|
|
| function testConformanceMessageValidation() {
|
| testMessageValidation("conformance_", [
|
| - testInterface.ConformanceTestInterfaceStub.prototype.validator]);
|
| + testInterface.ConformanceTestInterface.validateRequest]);
|
| }
|
|
|
| function testNotImplementedMessageValidation() {
|
| testMessageValidation("not_implemented_", [
|
| - testInterface.ConformanceTestInterfaceStub.prototype.validator]);
|
| + testInterface.ConformanceTestInterface.validateRequest]);
|
| }
|
|
|
| function testIntegratedMessageValidation() {
|
| @@ -279,8 +279,8 @@ define([
|
|
|
| var testConnection = new connection.TestConnection(
|
| testMessagePipe.handle1,
|
| - testInterface.IntegrationTestInterface1Stub,
|
| - testInterface.IntegrationTestInterface2Proxy);
|
| + testInterface.IntegrationTestInterface1.stubClass,
|
| + testInterface.IntegrationTestInterface2.proxyClass);
|
|
|
| var validationError = noError;
|
| testConnection.router_.validationErrorHandler = function(err) {
|
|
|