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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user