Skip to content

Commit d073921

Browse files
committed
Fix contract.
1 parent e72282a commit d073921

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tests/mocks/sends-to-self-on-construct.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
pragma solidity 0.6.2;
1+
// SPDX-License-Identifier: MIT
2+
pragma solidity 0.8.6;
23

34
import "../../contracts/mocks/nf-token-mock.sol";
45
import "./nf-token-receiver-test-mock.sol";
@@ -8,8 +9,7 @@ contract SendsToSelfOnConstruct is
89
{
910
uint constant TOKEN_ID = 1;
1011

11-
constructor()
12-
public
12+
constructor()
1313
{
1414
NFTokenMock tokens = new NFTokenMock();
1515
tokens.mint(address(this), TOKEN_ID);

0 commit comments

Comments
 (0)