Small refactor to update wording.

This commit is contained in:
CalDescent
2021-10-02 15:48:31 +01:00
parent 1b3f37eb78
commit 8eddaa3fac
3 changed files with 9 additions and 9 deletions

View File

@@ -42,12 +42,12 @@ public class BootstrapTests extends Common {
}
@Test
public void testCanBootstrap() throws DataException, InterruptedException, TransformationException, IOException {
public void testCanCreateBootstrap() throws DataException, InterruptedException, TransformationException, IOException {
try (final Repository repository = RepositoryManager.getRepository()) {
this.buildDummyBlockchain(repository);
Bootstrap bootstrap = new Bootstrap(repository);
assertTrue(bootstrap.canBootstrap());
assertTrue(bootstrap.canCreateBootstrap());
}
}