Skip to content

Commit

Permalink
- fixed AccountInfoUpdateServiceTest
Browse files Browse the repository at this point in the history
  • Loading branch information
dartpopikyardo committed Oct 21, 2016
1 parent fd0a435 commit c157ba5
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package net.chrisrichardson.eventstore.javaexamples.banking.backend.queryside.accounts;

import io.eventuate.Int128;
import io.eventuate.javaclient.spring.jdbc.EventuateJdbcEventStoreConfiguration;
import io.eventuate.javaclient.spring.jdbc.IdGenerator;
import io.eventuate.javaclient.spring.jdbc.IdGeneratorImpl;
Expand Down Expand Up @@ -46,7 +47,7 @@ public void shouldSaveAccountInfo() throws ExecutionException, InterruptedExcept
IdGenerator x = new IdGeneratorImpl();
String accountId = x.genId().asString();
String customerId = x.genId().asString();
String version = x.genId().asString();
Int128 version = x.genId();

String title = "Checking account";
BigDecimal initialBalance = new BigDecimal("1345");
Expand Down Expand Up @@ -99,7 +100,7 @@ public void shouldHandleDuplicateSaveAccountInfo() throws ExecutionException, In
IdGenerator x = new IdGeneratorImpl();
String accountId = x.genId().asString();
String customerId = x.genId().asString();
String version = x.genId().asString();
Int128 version = x.genId();

String title = "Checking account";
BigDecimal initialBalance = new BigDecimal("1345");
Expand All @@ -114,7 +115,7 @@ public void shouldUpdateTransactionStatus() {
IdGenerator x = new IdGeneratorImpl();
String accountId = x.genId().asString();
String customerId = x.genId().asString();
String version = x.genId().asString();
Int128 version = x.genId();

String title = "Checking account";
BigDecimal initialBalance = new BigDecimal("1345");
Expand Down

0 comments on commit c157ba5

Please sign in to comment.