From 75b853a8d846448364183f3085f47d3a18c4b1f8 Mon Sep 17 00:00:00 2001 From: ppedziwiatr Date: Mon, 8 Jan 2024 20:08:47 +0100 Subject: [PATCH] v1.4.32 --- package.json | 2 +- src/__tests__/integration/basic/pst.test.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index bf21165..91faf7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "warp-contracts", - "version": "1.4.31", + "version": "1.4.32", "description": "An implementation of the SmartWeave smart contract protocol.", "types": "./lib/types/index.d.ts", "main": "./lib/cjs/index.js", diff --git a/src/__tests__/integration/basic/pst.test.ts b/src/__tests__/integration/basic/pst.test.ts index 98339aa..47a3f41 100644 --- a/src/__tests__/integration/basic/pst.test.ts +++ b/src/__tests__/integration/basic/pst.test.ts @@ -129,7 +129,9 @@ describe('Testing the Profit Sharing Token', () => { const result = await pst.readState(); expect(result.cachedValue.validity[interaction.originalTxId]).toBeFalsy(); - expect(result.cachedValue.errorMessages[interaction.originalTxId]).toContain('Trying to call "view" function from a "write" action'); + expect(result.cachedValue.errorMessages[interaction.originalTxId]).toContain( + 'Trying to call "view" function from a "write" action' + ); }); it('should properly dispatch an event', async () => {