JavaScript Test - correct regression test for bug 292863

This commit is contained in:
bclary%bclary.com 2006-11-11 05:22:46 +00:00
parent 9e09938936
commit 8a9d4f84c3

View File

@ -40,7 +40,7 @@ START("Undeclaring namespace prefix should cause parse error");
var bug = 292863;
var summary = 'Undeclaring namespace prefix should cause parse error';
var actual = 'no error';
var expect = 'no error';
var expect = 'error';
printBugNumber (bug);
printStatus (summary);
@ -54,7 +54,7 @@ try
}
catch(e)
{
actual = e + '';
actual = 'error';
}
TEST(1, expect, actual);