From e4d7108545b30317d91b0b06bf7cb6a1c2e6ed3e Mon Sep 17 00:00:00 2001 From: teddy Date: Mon, 22 Jul 2024 16:27:37 -0300 Subject: [PATCH] fix: more descriptive tree --- test/unit/BCoWPool/BCoWPool_IsValidSignature.t.sol | 2 +- test/unit/BCoWPool/BCoWPool_IsValidSignature.tree | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/BCoWPool/BCoWPool_IsValidSignature.t.sol b/test/unit/BCoWPool/BCoWPool_IsValidSignature.t.sol index 22ddfd45..aeb8086b 100644 --- a/test/unit/BCoWPool/BCoWPool_IsValidSignature.t.sol +++ b/test/unit/BCoWPool/BCoWPool_IsValidSignature.t.sol @@ -22,7 +22,7 @@ contract BCoWPoolIsValidSignature is BCoWPoolBase { bCoWPool.mock_call_verify(validOrder); } - function test_RevertWhen_OrdersAppdataIsDifferent(bytes32 appData_) external { + function test_RevertWhen_OrdersAppdataIsDifferentThanOneSetAtConstruction(bytes32 appData_) external { vm.assume(appData != appData_); validOrder.appData = appData_; // it should revert diff --git a/test/unit/BCoWPool/BCoWPool_IsValidSignature.tree b/test/unit/BCoWPool/BCoWPool_IsValidSignature.tree index f3cfba3e..524e8290 100644 --- a/test/unit/BCoWPool/BCoWPool_IsValidSignature.tree +++ b/test/unit/BCoWPool/BCoWPool_IsValidSignature.tree @@ -1,5 +1,5 @@ BCoWPool::IsValidSignature -├── when orders appdata is different +├── when orders appdata is different than one set at construction │ └── it should revert ├── when orderHash does not match hashed order │ └── it should revert