Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 6f37a00

Browse files
committed
compile-solidity: remove process.env.TEST guard
This was necessary for TravisCI and is not needed for Github Actions
1 parent 5affa18 commit 6f37a00

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

packages/compile-solidity/test/test_supplier.js

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,10 @@ describe("CompilerSupplier", function () {
189189

190190
assert(NewPragma.contractName === "NewPragma", "Should have compiled");
191191

192-
// atime is not getting updatd on read in CI.
193-
if (!process.env.TEST) {
194-
assert(
195-
initialAccessTime < finalAccessTime,
196-
"Should have used cached compiler"
197-
);
198-
}
192+
assert(
193+
initialAccessTime < finalAccessTime,
194+
"Should have used cached compiler"
195+
);
199196
});
200197

201198
describe("native / docker [ @native ]", function () {

0 commit comments

Comments
 (0)