Use import.sql instead of data.sql.

This commit is contained in:
Mark Paluch
2021-03-22 12:31:14 +01:00
parent 006e61a341
commit b319a9154f
2 changed files with 1 additions and 1 deletions

View File

@@ -38,6 +38,6 @@ public abstract class AbstractShowcaseTest extends AbstractTransactionalShowcase
public void setupData() throws Exception {
deleteFromTables("account", "customer");
executeSqlScript("classpath:data.sql", false);
executeSqlScript("classpath:import.sql", false);
}
}