aboutsummaryrefslogtreecommitdiff
path: root/tests/test_conda.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2026-04-09 06:58:14 -0400
committerGitHub <noreply@github.com>2026-04-09 06:58:14 -0400
commit1455ef340b1986ddd7e1c519f534ad051308a1ef (patch)
tree04255d8aa35cd689837614aa5c74bc8629037827 /tests/test_conda.c
parent269e2c5eb511ef74fe293c428202ddeb38ada0db (diff)
parente800cc620976bf6ea8198ac66811f4596b6a3af1 (diff)
downloadstasis-1455ef340b1986ddd7e1c519f534ad051308a1ef.tar.gz
Merge pull request #131 from jhunkeler/realloc-sefault-tests_add
tests_add: Fix incorrect size used by realloc
Diffstat (limited to 'tests/test_conda.c')
-rw-r--r--tests/test_conda.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_conda.c b/tests/test_conda.c
index 4d437e4..1d05e7e 100644
--- a/tests/test_conda.c
+++ b/tests/test_conda.c
@@ -20,7 +20,7 @@ void test_micromamba() {
struct testcase tc[] = {
{.mminfo = {.micromamba_prefix = mm_prefix, .conda_prefix = c_prefix}, .cmd = "info", .result = 0},
{.mminfo = {.micromamba_prefix = mm_prefix, .conda_prefix = c_prefix}, .cmd = "env list", .result = 0},
- {.mminfo = {.micromamba_prefix = mm_prefix, .conda_prefix = c_prefix}, .cmd = "run python -V", .result = 0},
+ {.mminfo = {.micromamba_prefix = mm_prefix, .conda_prefix = c_prefix}, .cmd = "run python3 -V", .result = 0},
{.mminfo = {.micromamba_prefix = mm_prefix, .conda_prefix = c_prefix}, .cmd = "no_such_option", .result = 109},
};