Skip to content

Commit

Permalink
Fix typo in test names
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Siroky committed Apr 29, 2015
1 parent 4bf6ec1 commit 181ffaa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -70,7 +70,7 @@ public void tearDown() {
} }


@Test @Test
public void simpleExcecutionTest() throws InterruptedException { public void simpleExecutionTest() throws InterruptedException {
CommandContext ctxCMD = new CommandContext(); CommandContext ctxCMD = new CommandContext();
ctxCMD.setData("businessKey", UUID.randomUUID().toString()); ctxCMD.setData("businessKey", UUID.randomUUID().toString());


Expand Down Expand Up @@ -301,7 +301,7 @@ public void executorExceptionTrimmingTest() throws InterruptedException {
} }


@Test @Test
public void reoccurringExcecutionTest() throws InterruptedException { public void reoccurringExecutionTest() throws InterruptedException {
CommandContext ctxCMD = new CommandContext(); CommandContext ctxCMD = new CommandContext();
ctxCMD.setData("businessKey", UUID.randomUUID().toString()); ctxCMD.setData("businessKey", UUID.randomUUID().toString());


Expand All @@ -320,7 +320,7 @@ public void reoccurringExcecutionTest() throws InterruptedException {
} }


@Test @Test
public void cleanupLogExcecutionTest() throws InterruptedException { public void cleanupLogExecutionTest() throws InterruptedException {
CommandContext ctxCMD = new CommandContext(); CommandContext ctxCMD = new CommandContext();
ctxCMD.setData("businessKey", UUID.randomUUID().toString()); ctxCMD.setData("businessKey", UUID.randomUUID().toString());


Expand Down
Expand Up @@ -42,14 +42,14 @@ public void tearDown() {
@Override @Override
@Test @Test
@Ignore("It's only for JPA based as it removes data from db") @Ignore("It's only for JPA based as it removes data from db")
public void cleanupLogExcecutionTest() throws InterruptedException { public void cleanupLogExecutionTest() throws InterruptedException {


} }


@Override @Override
@Test @Test
@Ignore("It's only for JPA based as it removes data from db") @Ignore("It's only for JPA based as it removes data from db")
public void reoccurringExcecutionTest() throws InterruptedException { public void reoccurringExecutionTest() throws InterruptedException {


} }


Expand Down

0 comments on commit 181ffaa

Please sign in to comment.