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:
parent
b23545fafa
commit
cc58a27b00
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue