Skip to content

Commit

Permalink
rename $CORN to $MASA in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcabot committed Oct 5, 2022
1 parent 406d0e6 commit 07584c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/SoulStore.test.ts
Expand Up @@ -60,7 +60,7 @@ describe("Soul Store", () => {
admin
);

// we get $CORN tokens for address1
// we get $MASA tokens for address1
const corn: CORN = CORN__factory.connect(cornAddress, admin);
await corn.connect(address1).mint();

Expand Down Expand Up @@ -369,7 +369,7 @@ describe("Soul Store", () => {
const reserveWalletBalanceBefore = await corn.balanceOf(reserveWallet);

await soulStore.connect(address1).purchaseIdentityAndName(
CORN_GOERLI, // $CORN
CORN_GOERLI, // $MASA
SOUL_NAME,
YEAR,
ARWEAVE_LINK
Expand Down Expand Up @@ -433,7 +433,7 @@ describe("Soul Store", () => {

await expect(
soulStore.connect(address2).purchaseIdentityAndName(
CORN_GOERLI, // $CORN
CORN_GOERLI, // $MASA
SOUL_NAME,
YEAR,
ARWEAVE_LINK
Expand Down Expand Up @@ -523,7 +523,7 @@ describe("Soul Store", () => {
.approve(soulStore.address, priceInUtilityToken);

await soulStore.connect(address1).purchaseName(
CORN_GOERLI, // $CORN
CORN_GOERLI, // $MASA
SOUL_NAME,
YEAR,
ARWEAVE_LINK
Expand Down Expand Up @@ -580,7 +580,7 @@ describe("Soul Store", () => {

await expect(
soulStore.connect(address2).purchaseName(
CORN_GOERLI, // $CORN
CORN_GOERLI, // $MASA
SOUL_NAME,
YEAR,
ARWEAVE_LINK
Expand Down

0 comments on commit 07584c7

Please sign in to comment.