chore(solc): fix flaky integration test

When running integration tests, the `cfg(test)` is not triggered, so we
added a `tests` feature in the code. However, we did not include it
in the actual features of the crate, so it was not getting triggered
when the `--all-features` tests were running.
This commit is contained in:
Georgios Konstantopoulos 2021-11-05 18:23:24 +00:00
parent 03c109fb4d
commit b61adcfd30
1 changed files with 1 additions and 0 deletions

View File

@ -39,3 +39,4 @@ tempdir = "0.3.7"
[features]
async = ["tokio", "futures-util"]
full = ["async", "svm"]
tests = []