Skip to content

Commit

Permalink
JBTM-1293 ATBridgeTest#testSimple counter isn't incrimented
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobinson committed Oct 10, 2012
1 parent 69a83af commit 9e2473e
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -38,6 +38,9 @@ public void testSimple() throws Exception
client.incrementCounter(1);
ut.commit();

//JBTM-1293
Thread.sleep(3000);

ut.begin();
int counter = client.getCounter();
ut.commit();
Expand All @@ -52,6 +55,9 @@ public void testClientDrivenRollback() throws Exception
client.incrementCounter(1);
ut.rollback();

//JBTM-1293
Thread.sleep(3000);

ut.begin();
int counter = client.getCounter();
ut.commit();
Expand Down

0 comments on commit 9e2473e

Please sign in to comment.