Skip to content

Commit

Permalink
fix: more descriptive tree
Browse files Browse the repository at this point in the history
  • Loading branch information
0xteddybear committed Jul 22, 2024
1 parent d80191e commit e4d7108
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/unit/BCoWPool/BCoWPool_IsValidSignature.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/unit/BCoWPool/BCoWPool_IsValidSignature.tree
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit e4d7108

Please sign in to comment.