diff options
| author | 2021-01-26 17:53:10 +0200 | |
|---|---|---|
| committer | 2021-01-26 17:53:10 +0200 | |
| commit | ede6823b005260f0782b03f964125f49e4684d4b (patch) | |
| tree | 47f38920b906a1b038f4e65d238c5bd6d6f3dd90 /tests/helpers.py | |
| parent | Added defcon status notifier (diff) | |
| parent | Merge pull request #1372 from anand2312/duckpond-check (diff) | |
Merge branch 'master' into mbaruh/defcon
Diffstat (limited to 'tests/helpers.py')
| -rw-r--r-- | tests/helpers.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/helpers.py b/tests/helpers.py index 870f66197..496363ae3 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -230,7 +230,7 @@ class MockMember(CustomMockMixin, unittest.mock.Mock, ColourMixin, HashableMixin      spec_set = member_instance      def __init__(self, roles: Optional[Iterable[MockRole]] = None, **kwargs) -> None: -        default_kwargs = {'name': 'member', 'id': next(self.discord_id), 'bot': False} +        default_kwargs = {'name': 'member', 'id': next(self.discord_id), 'bot': False, "pending": False}          super().__init__(**collections.ChainMap(kwargs, default_kwargs))          self.roles = [MockRole(name="@everyone", position=1, id=0)] | 
