Skip to content

Commit

Permalink
Fix Specification_Test (#10739)
Browse files Browse the repository at this point in the history
* Fix Specification_Test

* fix the rest of the spec tests

* lint
  • Loading branch information
Inphi authored Jun 5, 2024
1 parent e45f887 commit 93a2432
Show file tree
Hide file tree
Showing 2 changed files with 161 additions and 18 deletions.
2 changes: 1 addition & 1 deletion packages/contracts-bedrock/scripts/ForgeArtifacts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ library ForgeArtifacts {
{
string memory pathExcludesPat;
for (uint256 i = 0; i < pathExcludes.length; i++) {
pathExcludesPat = string.concat(pathExcludesPat, " -path ", pathExcludes[i]);
pathExcludesPat = string.concat(pathExcludesPat, " -path \"", pathExcludes[i], "\"");
if (i != pathExcludes.length - 1) {
pathExcludesPat = string.concat(pathExcludesPat, " -o ");
}
Expand Down
Loading

0 comments on commit 93a2432

Please sign in to comment.