Skip to content

Commit 8301355

Browse files
lrazovicJuaniRios
authored andcommitted
chore: update doc
1 parent a0ee698 commit 8301355

File tree

1 file changed

+2
-2
lines changed
  • integration-tests/chopsticks/src

1 file changed

+2
-2
lines changed

integration-tests/chopsticks/src/setup.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class ChainSetup {
5050
// Needed to execute storage migrations within the new WASM before running tests.
5151
const head = this.polimec.head;
5252
console.log(`✅ Polimec chain is at block ${head.number}`);
53-
console.log('✅ Running storage migrations...');
53+
console.log('✅ Producing a new block...');
5454
const new_block = await this.polimec?.newBlock();
5555
console.log(`✅ Polimec chain is at block ${new_block.number}`);
5656
expect(new_block.number === head.number + 1, 'Block number should be incremented by 1');
@@ -69,7 +69,7 @@ export class ChainSetup {
6969
private async setupPolimec(polimec_storage: unknown) {
7070
const file = Bun.file(POLIMEC_WASM);
7171

72-
// Note: the tests are inteded to use a pre-production, locally compiled runtime, that's why we throw an error.
72+
// Note: the tests are intended to use a pre-production, locally compiled runtime, that's why we throw an error.
7373
if (!(await file.exists())) {
7474
throw new Error(
7575
'Polimec runtime not found! Please build it by running `cargo b -r -p polimec-runtime` before executing the tests.',

0 commit comments

Comments
 (0)