From 9ff9bf45a1392c0ea5c01e80c45631c088de01b7 Mon Sep 17 00:00:00 2001 From: Anton Trunov Date: Wed, 18 Dec 2024 20:21:45 +0400 Subject: [PATCH] fix: masterchain test descriptions --- src/test/e2e-emulated/masterchain.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/e2e-emulated/masterchain.spec.ts b/src/test/e2e-emulated/masterchain.spec.ts index 04164a611..a351dd5ee 100644 --- a/src/test/e2e-emulated/masterchain.spec.ts +++ b/src/test/e2e-emulated/masterchain.spec.ts @@ -17,7 +17,7 @@ describe("masterchain", () => { // Deployment and simple message receiving // - it("should deploy to the workchain", async () => { + it("should deploy to workchain", async () => { const contract = blockchain.openContract( await MasterchainTester.fromInit(), ); @@ -36,7 +36,7 @@ describe("masterchain", () => { }); }); - it("should not deploy to the workchain from masterchain", async () => { + it("should not deploy to workchain from masterchain", async () => { const treasure = await blockchain.treasury("treasure", { workchain: -1, }); @@ -59,7 +59,7 @@ describe("masterchain", () => { }); }); - it("should deploy to the workchain from masterchain when masterchain enabled", async () => { + it("should deploy to masterchain from masterchain", async () => { const treasure = await blockchain.treasury("treasure", { workchain: -1, });