File tree 1 file changed +2
-2
lines changed
integration-tests/chopsticks/src
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export class ChainSetup {
50
50
// Needed to execute storage migrations within the new WASM before running tests.
51
51
const head = this . polimec . head ;
52
52
console . log ( `✅ Polimec chain is at block ${ head . number } ` ) ;
53
- console . log ( '✅ Running storage migrations ...' ) ;
53
+ console . log ( '✅ Producing a new block ...' ) ;
54
54
const new_block = await this . polimec ?. newBlock ( ) ;
55
55
console . log ( `✅ Polimec chain is at block ${ new_block . number } ` ) ;
56
56
expect ( new_block . number === head . number + 1 , 'Block number should be incremented by 1' ) ;
@@ -69,7 +69,7 @@ export class ChainSetup {
69
69
private async setupPolimec ( polimec_storage : unknown ) {
70
70
const file = Bun . file ( POLIMEC_WASM ) ;
71
71
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.
73
73
if ( ! ( await file . exists ( ) ) ) {
74
74
throw new Error (
75
75
'Polimec runtime not found! Please build it by running `cargo b -r -p polimec-runtime` before executing the tests.' ,
You can’t perform that action at this time.
0 commit comments