fix for broken unit test; make sure when we can't get an index off of disk, the internal method returns null

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4040 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2010-08-16 13:12:32 +00:00
parent b23545fafa
commit cc58a27b00
1 changed files with 2 additions and 1 deletions

View File

@ -90,7 +90,8 @@ public class TribbleRMDTrackBuilderUnitTest extends BaseTest {
} catch (IOException e) {
Assert.fail("We weren't expecting an exception -> " + e.getMessage());
}
Assert.assertTrue(ind != null);
// make sure we get back a null index; i.e. we can't load the index from disk
Assert.assertTrue(ind == null);
}