This is an automated email from the ASF dual-hosted git repository. not-in-ldap pushed a commit to branch juerg/cache-query-job-benchmark in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit a2ef29b0c891e284db0f8007599920c0a71929af Author: Jürg Billeter <[email protected]> AuthorDate: Thu Oct 8 17:07:29 2020 +0200 tests/internals/pluginloading: Add missing get_ref() to FooSource --- tests/internals/pluginloading/customsource/pluginsources/foo.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/internals/pluginloading/customsource/pluginsources/foo.py b/tests/internals/pluginloading/customsource/pluginsources/foo.py index c5229f3..fd44a54 100644 --- a/tests/internals/pluginloading/customsource/pluginsources/foo.py +++ b/tests/internals/pluginloading/customsource/pluginsources/foo.py @@ -14,6 +14,9 @@ class FooSource(Source): def get_unique_key(self): pass + def get_ref(self): + pass + def setup(): return FooSource
