From e800cc620976bf6ea8198ac66811f4596b6a3af1 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 9 Apr 2026 02:04:22 -0400 Subject: python3, not python --- tests/test_conda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}, }; -- cgit