summaryrefslogtreecommitdiff
path: root/tests/internals/pluginloading/badversionsource/customsources/foo.py
diff options
context:
space:
mode:
authorBenjamin Schubert <contact@benschubert.me>2020-01-16 18:49:54 +0000
committerBenjamin Schubert <contact@benschubert.me>2020-01-16 18:49:54 +0000
commita5b2396539e1621eef75a035b12c1c4266b5c9fe (patch)
tree174524d511845a01449ce4be73982f2c0abfafb8 /tests/internals/pluginloading/badversionsource/customsources/foo.py
parentb41f5dd977d13937f338d3737733353d613a2245 (diff)
parent3554f36185d4ce507fbc76d7a694849ae717d1a8 (diff)
downloadbuildstream-a5b2396539e1621eef75a035b12c1c4266b5c9fe.tar.gz
Merge branch 'bschubert/optimize-consistency' into 'master'
Optimize consistency and state handling Closes #1126 See merge request BuildStream/buildstream!1739
Diffstat (limited to 'tests/internals/pluginloading/badversionsource/customsources/foo.py')
-rw-r--r--tests/internals/pluginloading/badversionsource/customsources/foo.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/internals/pluginloading/badversionsource/customsources/foo.py b/tests/internals/pluginloading/badversionsource/customsources/foo.py
index f50855fd1..628f99b29 100644
--- a/tests/internals/pluginloading/badversionsource/customsources/foo.py
+++ b/tests/internals/pluginloading/badversionsource/customsources/foo.py
@@ -1,4 +1,4 @@
-from buildstream import Source, Consistency
+from buildstream import Source
class BarSource(Source):
@@ -11,9 +11,6 @@ class BarSource(Source):
def configure(self, node):
pass
- def get_consistency(self):
- return Consistency.INCONSISTENT
-
def setup():
return BarSource