From 31daff88ae6dbf63efa30b7be4d94417d6ed140d Mon Sep 17 00:00:00 2001 From: Chad Ostrowski <221614+chadoh@users.noreply.github.com> Date: Tue, 14 May 2024 17:10:36 -0400 Subject: [PATCH] fix: test had find/replace pasta similar to "copypasta" but nowhere near as catchy --- test/unit/spec/contract_spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/spec/contract_spec.ts b/test/unit/spec/contract_spec.ts index c81b6cf6e..2df4ab0b2 100644 --- a/test/unit/spec/contract_spec.ts +++ b/test/unit/spec/contract_spec.ts @@ -19,7 +19,7 @@ before(() => { it("throws if no entries", () => { expect(() => new ContractClient.Spec([])).to.throw( - /ContractClient spec must have at least one entry/i + /Contract spec must have at least one entry/i ); });