~pbeaman/akiban-persistit/fix-rebalance-exception

« back to all changes in this revision

Viewing changes to src/test/java/com/persistit/Bug915594Test.java

  • Committer: Peter Beaman
  • Date: 2012-11-23 20:06:26 UTC
  • mfrom: (385.1.10 stage)
  • Revision ID: pbeaman@akiban.com-20121123200626-r0oal8cevxrf3vfb
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
        txn.rollback();
85
85
        txn.end();
86
86
        _persistit.checkpoint();
87
 
        final Properties properties = _persistit.getProperties();
88
87
        ex = null;
89
88
        txn = null;
90
89
        _persistit.close();
91
90
 
92
 
        _persistit = new Persistit();
93
 
        _persistit.initialize(properties);
 
91
        _persistit = new Persistit(_config);
94
92
        final Exchange ex2 = _persistit.getExchange("persistit", "Bug915594Test", true);
95
93
        assertTrue(!ex2.clear().next(true));
96
94
    }