Skip to content

Commit

Permalink
Rename a couple of tests for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
olim7t committed Jun 21, 2019
1 parent f191371 commit 7a47dad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -45,7 +45,7 @@

@Category(ParallelizableTests.class)
@CassandraRequirement(min = "3.4", description = "Creates a SASI index")
public class InsertEntityIT extends InventoryITBase {
public class InsertIT extends InventoryITBase {

private static CcmRule ccm = CcmRule.getInstance();

Expand All @@ -64,7 +64,7 @@ public static void setup() {
SimpleStatement.builder(query).setExecutionProfile(sessionRule.slowProfile()).build());
}

InventoryMapper inventoryMapper = new InsertEntityIT_InventoryMapperBuilder(session).build();
InventoryMapper inventoryMapper = new InsertIT_InventoryMapperBuilder(session).build();
dao = inventoryMapper.productDao(sessionRule.keyspace());
}

Expand Down
Expand Up @@ -47,7 +47,7 @@

@Category(ParallelizableTests.class)
@CassandraRequirement(min = "3.4", description = "Creates a SASI index")
public class UpdateEntityIT extends InventoryITBase {
public class UpdateIT extends InventoryITBase {

private static CcmRule ccm = CcmRule.getInstance();

Expand All @@ -67,7 +67,7 @@ public static void setup() {
SimpleStatement.builder(query).setExecutionProfile(sessionRule.slowProfile()).build());
}

inventoryMapper = new UpdateEntityIT_InventoryMapperBuilder(session).build();
inventoryMapper = new UpdateIT_InventoryMapperBuilder(session).build();
dao = inventoryMapper.productDao(sessionRule.keyspace());
}

Expand Down
Expand Up @@ -32,7 +32,7 @@
import org.junit.runner.RunWith;

@RunWith(DataProviderRunner.class)
public class DaoUpdateGeneratorTest extends DaoMethodGeneratorTest {
public class DaoUpdateMethodGeneratorTest extends DaoMethodGeneratorTest {

private static final AnnotationSpec UPDATE_ANNOTATION =
AnnotationSpec.builder(Update.class).build();
Expand Down

0 comments on commit 7a47dad

Please sign in to comment.