From 73cfa77d082533e52632f97f92929d581142f89c Mon Sep 17 00:00:00 2001 From: sarmat Date: Tue, 28 Feb 2023 17:36:20 -0600 Subject: [PATCH] fix test --- test/OBSSStorage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/OBSSStorage.ts b/test/OBSSStorage.ts index ebe8f4c..1ecc719 100644 --- a/test/OBSSStorage.ts +++ b/test/OBSSStorage.ts @@ -68,7 +68,7 @@ describe('OBSSStorage contract tests', () => { await this.contract.addFeedPost(0, MOCK_CID) // Add reaction await this.contract.addReaction(0, 1) - expect(await this.contract.removeReaction(0, 0)) + expect(await this.contract.removeReaction(0, 1)) }) }) })