Skip to content

Commit

Permalink
fix: failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
josemarinas committed Apr 8, 2024
1 parent 2382d58 commit bd9c030
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions modules/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ TEMPLATE:
-->

## [UPCOMING]
## [1.23.1]

### Fixed
- Reorder id creation to match subgraph

## [1.23.0]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion modules/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aragon/sdk-client",
"author": "Aragon Association",
"version": "1.23.0",
"version": "1.23.1",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/sdk-client.esm.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ describe("Client Multisig", () => {
executionDate: Math.round(Date.now() / 1000).toString(),
executionBlockNumber: "50",
executionTxHash: TEST_TX_HASH,
approvers: [{ id: ADDRESS_ONE }, { id: ADDRESS_TWO }],
approvers: [{ id: ADDRESS_ONE, approver{address: ADDRESS_ONE} }, { id: ADDRESS_TWO, approver{address: ADDRESS_TWO}}],
minApprovals: 5,
plugin: {
onlyListed: true,
Expand Down Expand Up @@ -737,7 +737,7 @@ describe("Client Multisig", () => {
mockedClient.request.mockResolvedValueOnce({
multisigProposals: [{
...SUBGRAPH_PROPOSAL_BASE,
approvers: [{ id: ADDRESS_ONE }, { id: ADDRESS_TWO }],
approvers: [{ id: ADDRESS_ONE, approver: { address: ADDRESS_ONE } }, { id: ADDRESS_TWO, approver: { address: ADDRESS_TWO } }],
plugin: {
onlyListed: true,
},
Expand Down

0 comments on commit bd9c030

Please sign in to comment.