Skip to content

Commit

Permalink
Merge pull request #639 from sablier-labs/test/default-profile-value
Browse files Browse the repository at this point in the history
test: change default profile value
  • Loading branch information
PaulRBerg authored Jul 25, 2023
2 parents fa28136 + ed82630 commit c9245fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/Utils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ abstract contract Utils is StdUtils, PRBMathUtils {

/// @dev Checks if the Foundry profile is "test-optimized".
function isTestOptimizedProfile() internal returns (bool) {
string memory profile = vm.envOr({ name: "FOUNDRY_PROFILE", defaultValue: string("") });
string memory profile = vm.envOr({ name: "FOUNDRY_PROFILE", defaultValue: "default" });
return Strings.equal(profile, "test-optimized");
}
}

0 comments on commit c9245fa

Please sign in to comment.