Skip to content

Commit

Permalink
Update postMigrationAssertionsFlow.ts
Browse files Browse the repository at this point in the history
BN gt into >
  • Loading branch information
ignazio-bovo authored Dec 8, 2021
1 parent cd3d30f commit caa2df5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/network-tests/src/misc/postMigrationAssertionsFlow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ export default async function postMigrationAssertions({ api }: FlowProps): Promi
const nextVideoId = await api.query.content.nextVideoId()
const nextChannelId = await api.query.content.nextChannelId()

assert(nextVideoCategoryId.toNumber().gt(1));
assert(nextVideoId.toNumber().gt(1));
assert(nextChannelId.toNumber().gt(1));
assert(nextVideoCategoryId.toNumber(). > 1);
assert(nextVideoId.toNumber() > 1);
assert(nextChannelId.toNumber() > 1);

debug('Checking that number of outstanding channels & videos == 0');

Expand Down

0 comments on commit caa2df5

Please sign in to comment.