Skip to content

Commit

Permalink
chore: fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aorumbayev committed Aug 31, 2023
1 parent 587ca19 commit adec3c4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/subtopia.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
Account,
} from "algosdk";
import "dotenv/config";
import { enums, optInAsset, optOutAsset } from "../src/index";
import { optInAsset, optOutAsset } from "../src/index";
import { it, describe, expect, beforeAll, afterAll } from "vitest";

import { SubtopiaRegistryClient } from "../src/clients/SubtopiaRegistryClient";
Expand All @@ -15,6 +15,7 @@ import {
DurationType,
Duration,
DiscountType,
SubscriptionType,
} from "../src/enums";
import {
algos,
Expand Down Expand Up @@ -129,7 +130,7 @@ describe("subtopia", () => {
productName: "Notflix",
subscriptionName: "Premium",
price: 1,
subType: enums.SubscriptionType.UNLIMITED,
subType: SubscriptionType.UNLIMITED,
maxSubs: 0,
coinID: 0,
lockerID: lockerID,
Expand Down Expand Up @@ -247,7 +248,7 @@ describe("subtopia", () => {
productName: "Hooli",
subscriptionName: "Pro",
price: 1,
subType: enums.SubscriptionType.TIME_BASED,
subType: SubscriptionType.TIME_BASED,
maxSubs: 0,
coinID: 0,
lockerID: lockerID,
Expand Down

0 comments on commit adec3c4

Please sign in to comment.