Skip to content

Commit

Permalink
fix(a3p): fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge-Lopes committed Oct 3, 2024
1 parent 972775e commit a2d2034
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions a3p-integration/proposals/z:acceptance/kread.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
Expand All @@ -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);
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -137,7 +134,6 @@ test.serial('Alice sells a Character', async t => {
);

await sellCharacter(Alice);


const characterListAfter = await getMarketCharactersChildren();
t.true(
Expand Down
2 changes: 1 addition & 1 deletion a3p-integration/proposals/z:acceptance/test-lib/kread.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,4 +404,4 @@ export const getBalanceFromPurse = async (address, type) => {
} else {
return null;
}
};
};

0 comments on commit a2d2034

Please sign in to comment.