Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make database URL tests work in parallel.
There was a collision on the name of the environment variable "foo" between two tests. One would set it (extract_database_url_returns_env_vars) and other (extract_database_url_errors_if_env_var_is_unset) would unset it. As Cargo runs tests in parallel this would lead to this set of test having intermittent failures. Changed the names of the environment variables used in the tests to make them unique between tests, hence able to run in parallel.
- Loading branch information