Skip to content

Commit

Permalink
refactor: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
scottphc committed Jan 24, 2025
1 parent bb9c945 commit 26058a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/SpotlightIPCollection.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.13;

import "../lib/forge-std/src/Test.sol";
import {SpotlightIPCollection} from "../src/spotlight-ip-collection/SpotlightIPCollection.sol";

Expand Down Expand Up @@ -76,7 +77,7 @@ contract SpotlightIPCollectionTest is Test {
}

function test_mint() public {
uint originalTotalSupply = _spotlightIPCollection.totalSupply();
uint256 originalTotalSupply = _spotlightIPCollection.totalSupply();
address receiver = makeAddr("receiver");

uint256 tokenId = _mint(receiver);
Expand All @@ -87,7 +88,7 @@ contract SpotlightIPCollectionTest is Test {
}

function test_mintTo() public {
uint originalTotalSupply = _spotlightIPCollection.totalSupply();
uint256 originalTotalSupply = _spotlightIPCollection.totalSupply();
address receiver = makeAddr("receiver");

uint256 tokenId = _mintTo(receiver);
Expand Down

0 comments on commit 26058a3

Please sign in to comment.