Skip to content

Commit

Permalink
fix: 🐛 Fix test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
timbrinded committed May 13, 2024
1 parent c83cfa5 commit 933a4a1
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 26 deletions.
6 changes: 0 additions & 6 deletions test/configs/alphanet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ import-storage:
- - - "0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"
- data:
free: "100000000000000000000000"
TechCommitteeCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
CouncilCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
TreasuryCouncilCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
Sudo:
Key: "0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"
AuthorFilter:
Expand Down
6 changes: 0 additions & 6 deletions test/configs/moonbeamChopsticks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ import-storage:
sufficients: 1
data:
free: "100000000000000000000000"
TechCommitteeCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
CouncilCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
TreasuryCouncilCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
AuthorFilter:
EligibleRatio: 100
EligibleCount: 100
6 changes: 0 additions & 6 deletions test/configs/moonbeamChopsticksRound.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ import-storage:
sufficients: 1
data:
free: "100000000000000000000000"
TechCommitteeCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
CouncilCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
TreasuryCouncilCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
AuthorFilter:
EligibleRatio: 100
EligibleCount: 100
6 changes: 0 additions & 6 deletions test/configs/moonriverChopsticks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ import-storage:
sufficients: 1
data:
free: "100000000000000000000000"
TechCommitteeCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
CouncilCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
TreasuryCouncilCollective:
Members: ["0xf24FF3a9CF04c71Dbc94D0b566f7A27B94566cac"]
AuthorFilter:
EligibleRatio: 100
EligibleCount: 100
4 changes: 2 additions & 2 deletions test/suites/dev_tests/test1/test_dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -648,8 +648,8 @@ describeSuite({
title: "it can fast execute an openGov proposal",
test: async () => {
// change this to system.authorizedupgrade after sdk 1.7
const value = (await context.pjsApi.query.parachainSystem.authorizedUpgrade()).isNone;
expect(value, "parachainSystem.authorizedUpgrade should be empty to begin with").toBe(true);
const value = (await context.pjsApi.query.system.authorizedUpgrade()).isNone;
expect(value, "system.authorizedUpgrade should be empty to begin with").toBe(true);

const extrinsicCall = context.pjsApi.tx.parachainSystem.authorizeUpgrade(
"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
Expand Down

0 comments on commit 933a4a1

Please sign in to comment.