summaryrefslogtreecommitdiff
path: root/tests/sources/no-fetch-cached/plugins/sources/always_cached.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sources/no-fetch-cached/plugins/sources/always_cached.py')
-rw-r--r--tests/sources/no-fetch-cached/plugins/sources/always_cached.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/sources/no-fetch-cached/plugins/sources/always_cached.py b/tests/sources/no-fetch-cached/plugins/sources/always_cached.py
index 623ab19ab..aef13279b 100644
--- a/tests/sources/no-fetch-cached/plugins/sources/always_cached.py
+++ b/tests/sources/no-fetch-cached/plugins/sources/always_cached.py
@@ -7,7 +7,7 @@ Used to test that BuildStream core does not call fetch() for cached sources.
"""
-from buildstream import Consistency, Source
+from buildstream import Source
class AlwaysCachedSource(Source):
@@ -20,8 +20,11 @@ class AlwaysCachedSource(Source):
def get_unique_key(self):
return None
- def get_consistency(self):
- return Consistency.CACHED
+ def is_resolved(self):
+ return True
+
+ def is_cached(self):
+ return True
def load_ref(self, node):
pass