Commit a3232d82 authored by James Kim's avatar James Kim

fix comments

parent d9277483
...@@ -411,7 +411,7 @@ contract OptimistTest is Optimist_Initializer { ...@@ -411,7 +411,7 @@ contract OptimistTest is Optimist_Initializer {
} }
/** /**
* @notice The tokenURI should return the token uri for a minted token. * @notice tokenURI should return the token uri for a minted token.
*/ */
function test_tokenURI_returnsCorrectTokenURI_succeeds() external { function test_tokenURI_returnsCorrectTokenURI_succeeds() external {
// we are using true but it can be any non empty value // we are using true but it can be any non empty value
...@@ -445,7 +445,7 @@ contract OptimistTest is Optimist_Initializer { ...@@ -445,7 +445,7 @@ contract OptimistTest is Optimist_Initializer {
} }
/** /**
* @notice It should revert if anybody attemps token transfer. * @notice transferFrom should revert since Optimist is a SBT.
*/ */
function test_transferFrom_reverts() external { function test_transferFrom_reverts() external {
_mockAllowlistTrueFor(bob); _mockAllowlistTrueFor(bob);
...@@ -470,7 +470,7 @@ contract OptimistTest is Optimist_Initializer { ...@@ -470,7 +470,7 @@ contract OptimistTest is Optimist_Initializer {
} }
/** /**
* @notice It should revert if anybody attemps approve. * @notice approve should revert since Optimist is a SBT.
*/ */
function test_approve_reverts() external { function test_approve_reverts() external {
_mockAllowlistTrueFor(bob); _mockAllowlistTrueFor(bob);
...@@ -510,7 +510,7 @@ contract OptimistTest is Optimist_Initializer { ...@@ -510,7 +510,7 @@ contract OptimistTest is Optimist_Initializer {
} }
/** /**
* @notice Only Owner should be able to burn token. * @notice Only owner should be able to burn token.
*/ */
function test_burn_byOwner_succeeds() external { function test_burn_byOwner_succeeds() external {
_mockAllowlistTrueFor(bob); _mockAllowlistTrueFor(bob);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment