Skip to content

Commit 01ab173

Browse files
authored
Fix test project configs for viaIR detection in overrides (#856)
1 parent 4f007c7 commit 01ab173

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/sources/projects/hardhat-compile-config/hardhat.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ module.exports={
3434
optimizer: {
3535
enabled: true,
3636
runs: 200,
37-
viaIR: process.env.VIA_IR === "true",
3837
evmVersion: 'paris'
39-
}
38+
},
39+
viaIR: process.env.VIA_IR === "true",
4040
}
4141
}
4242
}

test/sources/projects/overrides-viaIR/hardhat.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ module.exports={
1818
optimizer: {
1919
enabled: true,
2020
runs: 200,
21-
viaIR: process.env.VIA_IR === "true",
2221
evmVersion: 'paris'
23-
}
22+
},
23+
viaIR: process.env.VIA_IR === "true",
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)