From a2d2034778c0526494279cf19de92b31ba5faf38 Mon Sep 17 00:00:00 2001 From: Jorge-Lopes Date: Thu, 3 Oct 2024 21:30:46 +0100 Subject: [PATCH] fix(a3p): fix formatting issues rel: https://github.com/Agoric/BytePitchPartnerEng/issues/13 --- a3p-integration/proposals/z:acceptance/kread.test.js | 4 ---- a3p-integration/proposals/z:acceptance/test-lib/kread.js | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/a3p-integration/proposals/z:acceptance/kread.test.js b/a3p-integration/proposals/z:acceptance/kread.test.js index ab524541887..9fcd1331990 100644 --- a/a3p-integration/proposals/z:acceptance/kread.test.js +++ b/a3p-integration/proposals/z:acceptance/kread.test.js @@ -48,7 +48,6 @@ test.serial('Alice unequips all defaults Items', async t => { ); await unequipAllItems(Alice); - const characterInventoryAfter = await getCharacterInventory(characterId); t.log(`Character inventory after unequipping: ${characterInventoryAfter}`); @@ -71,7 +70,6 @@ test.serial('Alice sells unequiped Item', async t => { const itemBefore = await getBalanceFromPurse(Alice, 'item'); await sellItem(Alice); - const itemListAfter = await getMarketItemsChildren(); t.is(itemListAfter.length, itemListBefore.length + 1); @@ -99,7 +97,6 @@ test.serial('Bob buys an Item on marketplace', async t => { const marketItem = await getMarketItem(marketItemNode); await buyItem(Bob); - const itemListAfter = await getMarketItemsChildren(); t.is(itemListAfter.length, itemListBefore.length - 1); @@ -137,7 +134,6 @@ test.serial('Alice sells a Character', async t => { ); await sellCharacter(Alice); - const characterListAfter = await getMarketCharactersChildren(); t.true( diff --git a/a3p-integration/proposals/z:acceptance/test-lib/kread.js b/a3p-integration/proposals/z:acceptance/test-lib/kread.js index 8b8a7e6eff4..adf65730569 100644 --- a/a3p-integration/proposals/z:acceptance/test-lib/kread.js +++ b/a3p-integration/proposals/z:acceptance/test-lib/kread.js @@ -404,4 +404,4 @@ export const getBalanceFromPurse = async (address, type) => { } else { return null; } -}; \ No newline at end of file +};