fix test bustage due to typo in JS code. This was a known problem that I could have SWORN that shaver checked in a fix for

This commit is contained in:
jband%netscape.com 2000-02-05 04:42:04 +00:00
parent d6d0f1af3d
commit 2d23e17518

View File

@ -245,7 +245,7 @@ CategoryEnumerator.prototype = {
if (!this.hasMoreElements())
return null; // XXX?
var str = Components.classes["component://netscape/supports-string"]
.createInterface(Components.interfaces.nsISupportsString);
.createInstance(Components.interfaces.nsISupportsString);
str.data = this.contents[this.index++];
return str;
},