Skip to content

Commit

Permalink
[helper-data-cassandra]:现在单元测试类可以通过测试
Browse files Browse the repository at this point in the history
  • Loading branch information
mrzhqiang committed Jan 13, 2021
1 parent 8ad2b1c commit afb241e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void mapper() {
mapper.delete(testTable);
}

static final class TestKeyspace {
public static final class TestKeyspace {
private static final String NAME = "cassandra";
static final Statement CREATE =
SchemaBuilder.createKeyspace(NAME).ifNotExists()
Expand All @@ -74,7 +74,7 @@ static final class TestKeyspace {
@Data
@EqualsAndHashCode(callSuper = true)
@Table(keyspace = TestKeyspace.NAME, name = TestTable.NAME)
static final class TestTable extends BaseCassandraEntity {
public static final class TestTable extends BaseCassandraEntity {
private static final String NAME = "cassandra";

@PartitionKey
Expand Down

0 comments on commit afb241e

Please sign in to comment.