Merge pull request #1022 from tahoe-lafs/3654.test-invite-success-py36

Make test_invite_success pass on Python 3.6

Fixes: ticket:3654
This commit is contained in:
Sajith Sasidharan 2021-03-28 10:17:16 -04:00 committed by GitHub
commit 3653b28905
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

0
newsfragments/3654.minor Normal file
View File

View File

@ -233,9 +233,9 @@ class Invite(GridTestMixin, CLITestMixin, unittest.TestCase):
successfully send an invite successfully send an invite
""" """
invite = yield self._invite_success(( invite = yield self._invite_success((
b"--shares-needed", b"1", "--shares-needed", "1",
b"--shares-happy", b"2", "--shares-happy", "2",
b"--shares-total", b"3", "--shares-total", "3",
)) ))
self.assertEqual( self.assertEqual(
invite["shares-needed"], "1", invite["shares-needed"], "1",