From 92aa7aaec2b48655981380d3b232a67d6d97af0b Mon Sep 17 00:00:00 2001 From: Robin Berjon Date: Thu, 7 Feb 2013 16:18:08 +0100 Subject: [PATCH] fix field name --- idlharness.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idlharness.js b/idlharness.js index 5c714b3f9f5b45..a321fbbfa2ee87 100644 --- a/idlharness.js +++ b/idlharness.js @@ -1459,7 +1459,7 @@ IdlInterface.prototype.test_members = function() window[this.name].prototype[member.name].apply({}, args); }, "calling operation with this = {} didn't throw TypeError"); }.bind(this), this.name + " interface: operation " + member.name + - "(" + member.arguments.map(function(m) { return m.type.idlType; }) + + "(" + member.arguments.map(function(m) { return m.idlType.idlType; }) + ")"); } // TODO: check more member types, like stringifier