diff options
-rw-r--r-- | source/merge.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/merge.d b/source/merge.d index e14f07a..7ee1746 100644 --- a/source/merge.d +++ b/source/merge.d @@ -177,7 +177,7 @@ auto integration_test(ref Conda conda, string outdir, test_runner_t runner, test string[] tmp = found.split("-"); found = tmp[0]; // Does not need to succeed for all matches - conda.run("uninstall " ~ found); + conda.run("remove" ~ found); } if (runner.requires) { |