fixed copy/paste error: DropKeyspaceSpecification#dropTable() -> #dropKeyspace()
This commit is contained in:
@@ -21,7 +21,7 @@ public class DropKeyspaceSpecification extends KeyspaceNameSpecification<DropKey
|
||||
* Entry point into the {@link DropKeyspaceSpecification}'s fluent API to drop a keyspace. Convenient if imported
|
||||
* statically.
|
||||
*/
|
||||
public static DropKeyspaceSpecification dropTable() {
|
||||
public static DropKeyspaceSpecification dropKeyspace() {
|
||||
return new DropKeyspaceSpecification();
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ public class DropKeyspaceCqlGeneratorTests {
|
||||
public String name = "mykeyspace";
|
||||
|
||||
public DropKeyspaceSpecification specification() {
|
||||
return DropKeyspaceSpecification.dropTable().name(name);
|
||||
return DropKeyspaceSpecification.dropKeyspace().name(name);
|
||||
}
|
||||
|
||||
public DropKeyspaceCqlGenerator generator() {
|
||||
|
||||
Reference in New Issue
Block a user