From 5ad1d7b90f6c518a8409607695408c073cd0957f Mon Sep 17 00:00:00 2001 From: danielsanchezq Date: Mon, 10 Apr 2023 18:14:38 +0200 Subject: [PATCH] Fix happy math mockoverlay missing methods --- carnot/test_happy_path.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/carnot/test_happy_path.py b/carnot/test_happy_path.py index 2b284b6..e574507 100644 --- a/carnot/test_happy_path.py +++ b/carnot/test_happy_path.py @@ -280,10 +280,10 @@ class TestCarnotHappyPath(TestCase): def is_leader(self, _id: Id): return True - def is_member_root(self, _id: Id): + def is_member_of_root_committee(self, _id: Id): return True - def is_member_leaf(self, _id: Id): + def is_member_of_leaf_committee(self, _id: Id): return True def leader(self, view: View) -> Id: