aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2025-04-02 15:36:05 -0400
committerGitHub <noreply@github.com>2025-04-02 15:36:05 -0400
commit4b28b550de153ea917b7c8736a4c61f2a42c8028 (patch)
tree3e72b6af4bf4d8e0ea80ca563e6485eb8d51be7a /tests
parent34cee3ad5258b86dfe60df155636bf929b9d0e13 (diff)
parent90755c85131cceb9f6d628703042129dc10dfca9 (diff)
downloadstasis-4b28b550de153ea917b7c8736a4c61f2a42c8028.tar.gz
Merge pull request #104 from jhunkeler/order-of-battle
base and "based_on" installations shall hardcode the requested python…
Diffstat (limited to 'tests')
-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 81f593f..4d437e4 100644
--- a/tests/test_conda.c
+++ b/tests/test_conda.c
@@ -111,7 +111,7 @@ void test_conda_setup_headless() {
void test_conda_env_create_from_uri() {
const char *url = "https://ssb.stsci.edu/jhunk/stasis_test/test_conda_env_create_from_uri.yml";
char *name = strdup(__FUNCTION__);
- STASIS_ASSERT(conda_env_create_from_uri(name, (char *) url) == 0, "creating an environment from a remote source failed");
+ STASIS_ASSERT(conda_env_create_from_uri(name, (char *) url, "3.11") == 0, "creating an environment from a remote source failed");
free(name);
}