diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-20 08:36:26 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-20 13:11:41 -0400 |
commit | 1999612a69a7947fb1b6fc45705299fe6db650ba (patch) | |
tree | c0416ae6037bc1fbc386aa94cc496d4e2ce3e04d /tests/test_conda.c | |
parent | cf5a1771ddf560da17d3dd869897ce2005315b15 (diff) | |
download | stasis-1999612a69a7947fb1b6fc45705299fe6db650ba.tar.gz |
Refactor structure
* Break delivery.c into smaller components
Diffstat (limited to 'tests/test_conda.c')
-rw-r--r-- | tests/test_conda.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_conda.c b/tests/test_conda.c index 72217fc..fc762e9 100644 --- a/tests/test_conda.c +++ b/tests/test_conda.c @@ -38,8 +38,8 @@ struct Delivery ctx; void test_conda_installation() { char *install_url = calloc(255, sizeof(install_url)); - delivery_get_installer_url(&ctx, install_url); - delivery_get_installer(&ctx, install_url); + delivery_get_conda_installer_url(&ctx, install_url); + delivery_get_conda_installer(&ctx, install_url); delivery_install_conda(ctx.conda.installer_path, ctx.storage.conda_install_prefix); STASIS_ASSERT_FATAL(access(ctx.storage.conda_install_prefix, F_OK) == 0, "conda was not installed correctly"); STASIS_ASSERT_FATAL(conda_activate(ctx.storage.conda_install_prefix, "base") == 0, "unable to activate base environment"); |