Skip to content

Commit

Permalink
dapp: remove extraneous quotes around replay string
Browse files Browse the repository at this point in the history
  • Loading branch information
d-xo committed Sep 15, 2021
1 parent e2f4cff commit 7993963
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Dapp remappings ignores non-directories in `DAPP_LIB`

### Fixed

- Dapp can correctly parse replay strings from invariant tests

## [0.34.1] - 2021-09-08

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/dapp/libexec/dapp/dapp---hevm-opts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ opts=()
[[ "$DAPP_TEST_CACHE" ]] && opts+=(--cache "$DAPP_TEST_CACHE")
[[ "$DAPP_TEST_MATCH" ]] && opts+=(--match "$DAPP_TEST_MATCH")
[[ "$DAPP_TEST_SOLVER" ]] && opts+=(--solver "$DAPP_TEST_SOLVER")
[[ "$DAPP_TEST_REPLAY" ]] && opts+=(--replay \'"$DAPP_TEST_REPLAY"\')
[[ "$DAPP_TEST_REPLAY" ]] && opts+=(--replay "$DAPP_TEST_REPLAY")
[[ "$DAPP_TEST_VERBOSITY" ]] && opts+=(--verbose "$DAPP_TEST_VERBOSITY")
[[ "$DAPP_TEST_COV_MATCH" ]] && opts+=(--cov-match "$DAPP_TEST_COV_MATCH")
[[ "$DAPP_TEST_FUZZ_RUNS" ]] && opts+=(--fuzz-runs "$DAPP_TEST_FUZZ_RUNS")
Expand Down

0 comments on commit 7993963

Please sign in to comment.