Skip to content

Commit

Permalink
test: address comments added semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
hui-an-yang committed Nov 24, 2022
1 parent d1efd1e commit 26ae7d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions integration-tests/contract-deploy-having-ticket.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CONFIGS } from "./config";
import { ticketCode, ticketStorage } from './data/code_with_ticket';
import { ticketCodeProto14, ticketStorageProto14 } from './data/code_with_ticket_proto14';
import { ticketCode } from './data/code_with_ticket';
import { ticketCodeProto14 } from './data/code_with_ticket_proto14';
import { Protocols } from "@taquito/taquito";

CONFIGS().forEach(({ lib, rpc, setup, protocol }) => {
Expand All @@ -12,8 +12,8 @@ CONFIGS().forEach(({ lib, rpc, setup, protocol }) => {

beforeEach(async (done) => {
await setup();
done()
})
done();
});

kathmandunet('Originates a contract having ticket with init and the contract api', async (done) => {
const op = await Tezos.contract.originate({
Expand Down Expand Up @@ -62,8 +62,8 @@ CONFIGS().forEach(({ lib, rpc, setup, protocol }) => {

beforeEach(async (done) => {
await setup();
done()
})
done();
});

limanetAndAlpha('Originates a contract having ticket with init and the contract api', async (done) => {
const op = await Tezos.contract.originate({
Expand Down
1 change: 1 addition & 0 deletions integration-tests/wallet-deploy-having-ticket.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ CONFIGS().forEach(({ lib, rpc, setup, protocol }) => {
done();
});
});

describe(`Test contract origination having ticket with init through wallet api using: ${rpc}`, () => {

beforeEach(async (done) => {
Expand Down

0 comments on commit 26ae7d8

Please sign in to comment.