remove unnecessary exception handling code in unit test for bug 332389. r=jwalden

This commit is contained in:
joshmoz%gmail.com 2007-03-12 09:19:40 +00:00
parent 4679053296
commit 477cf561bf

View File

@ -12,13 +12,7 @@ function run_test() {
terminated = true;
break;
}
try {
f = f.parent
}
catch (e) {
// Exception means we reached the top of a volume, terminate
f = null;
}
f = f.parent;
}
do_check_true(terminated);