From 9672182c6247984ee0fc28308b87cb390588281f Mon Sep 17 00:00:00 2001 From: clemlak Date: Tue, 27 Feb 2024 17:43:14 +0400 Subject: [PATCH] test: add skipped test for DFMM allocate --- src/test/unit/DFMM/Allocate.t.sol | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/unit/DFMM/Allocate.t.sol b/src/test/unit/DFMM/Allocate.t.sol index be1c6e5e..c0ad0f3b 100644 --- a/src/test/unit/DFMM/Allocate.t.sol +++ b/src/test/unit/DFMM/Allocate.t.sol @@ -16,4 +16,8 @@ contract DFMMAllocateTest is DFMMSetUp { vm.expectRevert(stdError.indexOOBError); dfmm.allocate(0, empty); } + + function test_DFMM_allocate_EmitsAllocateEvent() public { + skip(); + } }