summaryrefslogtreecommitdiff
path: root/tests/artifactcache/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/artifactcache/config.py')
-rw-r--r--tests/artifactcache/config.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/artifactcache/config.py b/tests/artifactcache/config.py
index 690e354f5..079e511ef 100644
--- a/tests/artifactcache/config.py
+++ b/tests/artifactcache/config.py
@@ -3,7 +3,8 @@ import pytest
import itertools
import os
-from buildstream._artifactcache import ArtifactCacheSpec, configured_remote_artifact_cache_specs
+from buildstream._artifactcache import ArtifactCacheSpec
+from buildstream._artifactcache.artifactcache import _configured_remote_artifact_cache_specs
from buildstream._context import Context
from buildstream._project import Project
from buildstream.utils import _deduplicate
@@ -99,7 +100,7 @@ def test_artifact_cache_precedence(tmpdir, override_caches, project_caches, user
project = Project(str(project_dir), context)
# Use the helper from the artifactcache module to parse our configuration.
- parsed_cache_specs = configured_remote_artifact_cache_specs(context, project)
+ parsed_cache_specs = _configured_remote_artifact_cache_specs(context, project)
# Verify that it was correctly read.
expected_cache_specs = list(_deduplicate(itertools.chain(override_caches, project_caches, user_caches)))