Merge branch 'master' of github.com:broadinstitute/gsa-unstable

This commit is contained in:
Chris Hartl 2013-01-02 14:44:49 -05:00
commit 09199366b7
1 changed files with 2 additions and 4 deletions

View File

@ -179,15 +179,13 @@ public class TraverseActiveRegionsUnitTest extends BaseTest {
return activeIntervals;
}
// TODO: fix this contracts issue and re-enable
@Test (enabled = false, expectedExceptions = PreconditionError.class)
@Test (expectedExceptions = PreconditionError.class)
public void testIsActiveRangeLow () {
DummyActiveRegionWalker walker = new DummyActiveRegionWalker(-0.1);
getActiveRegions(walker, intervals).values();
}
// TODO: fix this contracts issue and re-enable
@Test (enabled = false, expectedExceptions = PreconditionError.class)
@Test (expectedExceptions = PreconditionError.class)
public void testIsActiveRangeHigh () {
DummyActiveRegionWalker walker = new DummyActiveRegionWalker(1.1);
getActiveRegions(walker, intervals).values();