JavaScript Test - remove var declaration in test #2 to fix scope, bug 351503

This commit is contained in:
bclary%bclary.com 2006-09-20 03:44:18 +00:00
Родитель 1f6b3f79f2
Коммит 8cf00ad12e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -62,7 +62,7 @@ function test()
expect = 'TypeError: can\'t convert Object to string';
try
{
var a=1; b=2; c={toString: null}; "hahbhc".replace(/[abc]/g, eval);
a=1; b=2; c={toString: null}; "hahbhc".replace(/[abc]/g, eval);
actual = 'No Error';
}
catch(ex)