Regression test - wrap test function in try catch block to prevent undefined functions in test case from percolating to the top, no bug, not part of the build

git-svn-id: svn://10.0.0.236/trunk@181995 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bob%bclary.com
2005-10-11 17:23:03 +00:00
parent 967005c26b
commit a026ed637a

View File

@@ -1355,6 +1355,12 @@ function productList(catID,famID) {
// addBoxItem(document.Support_Form.Product_ID, 'Zen Portable Media Center', 'DUMMYPREFIX_ZenPMC_Temp|9882');
}
productList(0,0);
try
{
productList(0,0);
}
catch(e)
{
}
reportCompare(expect, actual, summary);