Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xorsal committed Sep 26, 2024
1 parent 4b5cf76 commit 8fda388
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions solidity/test/integration/RequestCreation.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract Integration_RequestCreation is IntegrationBase {
// Check: saved the correct nonce?
assertEq(oracle.nonceToRequestId(mockRequest.nonce), _requestId);

// Check: saved the correct creation block?
// Check: saved the correct creation timestamp?
assertEq(oracle.requestCreatedAt(_requestId), block.timestamp);

// Check: saved the allowed modules?
Expand All @@ -60,7 +60,7 @@ contract Integration_RequestCreation is IntegrationBase {
// Check: saved the correct nonce?
assertEq(oracle.nonceToRequestId(mockRequest.nonce), _requestId);

// Check: saved the correct creation block?
// Check: saved the correct creation timestamp?
assertEq(oracle.requestCreatedAt(_requestId), block.timestamp);

// Check: saved the allowed modules?
Expand Down
2 changes: 1 addition & 1 deletion solidity/test/integration/ResponseProposal.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract Integration_ResponseProposal is IntegrationBase {
bytes32[] memory _getResponseIds = oracle.getResponseIds(_requestId);
assertEq(_getResponseIds[0], _getId(mockResponse));

// Check: the creation block is correct?
// Check: the creation timestamp is correct?
assertEq(oracle.responseCreatedAt(_getId(mockResponse)), block.timestamp);
}

Expand Down

0 comments on commit 8fda388

Please sign in to comment.