Skip to content

Commit

Permalink
test(e2e): replaced tests of deprecated pallets
Browse files Browse the repository at this point in the history
  • Loading branch information
Imod7 committed Dec 1, 2023
1 parent ecd1518 commit e69ce5b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions e2e-tests/latest/endpoints/polkadot.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2017-2022 Parity Technologies (UK) Ltd.
// Copyright 2017-2023 Parity Technologies (UK) Ltd.
// This file is part of Substrate API Sidecar.
//
// Substrate API Sidecar is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -146,27 +146,27 @@ export const polkadot: IConfig = {
queryParams: ['at={blockId}'],
},
'/pallets/{palletId}/consts': {
path: '/pallets/democracy/consts',
path: '/pallets/MessageQueue/consts',
queryParams: ['at={blockId}'],
},
'/pallets/{palletId}/consts?onlyIds=true': {
path: '/pallets/14/consts',
path: '/pallets/100/consts',
queryParams: ['at={blockId}'],
},
'/pallets/{palletId}/consts/{constItemId}': {
path: '/pallets/democracy/consts/EnactmentPeriod',
path: '/pallets/MessageQueue/consts/ServiceWeight',
queryParams: ['at={blockId}'],
},
'/pallets/{palletId}/dispatchables': {
path: '/pallets/democracy/dispatchables',
path: '/pallets/XcmPallet/dispatchables',
queryParams: [],
},
'/pallets/{palletId}/dispatchables?onlyIds=true': {
path: '/pallets/14/dispatchables',
path: '/pallets/99/dispatchables',
queryParams: [],
},
'/pallets/{palletId}/dispatchables/{dispatchableItemId}': {
path: '/pallets/democracy/dispatchables/vote',
path: '/pallets/XcmPallet/dispatchables/limitedTeleportAssets',
queryParams: [],
},
'/pallets/{palletId}/dispatchables/{dispatchableItemIdWithMultipleWordName}': {
Expand All @@ -178,19 +178,19 @@ export const polkadot: IConfig = {
queryParams: ['at={blockId}'],
},
'/pallets/{palletId}/errors?onlyIds=true': {
path: '/pallets/17/errors',
path: '/pallets/34/errors',
queryParams: ['at={blockId}'],
},
'/pallets/{palletId}/errors/{errorItemId}': {
path: '/pallets/democracy/errors/ValueLow',
path: '/pallets/crowdloan/errors/VrfDelayInProgress',
queryParams: ['at={blockId}'],
},
'/pallets/{palletId}/events': {
path: '/pallets/balances/events',
queryParams: ['at={blockId}'],
},
'/pallets/{palletId}/events/{eventItemId}': {
path: '/pallets/democracy/events/Proposed',
path: '/pallets/auctions/events/ReserveConfiscated',
queryParams: ['at={blockId}', 'metadata=true'],
},
'/pallets/nominationPoools/info': {
Expand Down

0 comments on commit e69ce5b

Please sign in to comment.