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
Родитель d6d0f1af3d
Коммит 2d23e17518
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
},