Fixing more errors in the test - see bug 225289 comment 6.

This commit is contained in:
pschwartau%netscape.com 2003-11-15 23:19:27 +00:00
Родитель b0aecd67fb
Коммит e19013d947
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -126,7 +126,7 @@ pattern = /((?:a|[^a])*)/g;
status = inSection(10);
string = 'a';
actualmatch = string.match(pattern);
expectedmatch = Array('a', 'a');
expectedmatch = Array('a', '');
addThis();
status = inSection(11);
@ -138,7 +138,7 @@ pattern = /((?:a|[^a])*)/g;
status = inSection(12);
string = '()';
actualmatch = string.match(pattern);
expectedmatch = Array('()', ')');
expectedmatch = Array('()', '');
addThis();