Skip to content

Commit bff41fc

Browse files
authored
Merge branch 'dev' into add_mute_feature
2 parents 8a48ed1 + fb5faa7 commit bff41fc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

opentok/opentok.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1649,7 +1649,7 @@ def mute_all(self,
16491649
"""
16501650
Mutes all streams in an OpenTok session.
16511651
1652-
You can include an optional list of streams IDs to exclude from being muted.
1652+
You can include an optional list of streams IDs to exclude from being muted.
16531653
16541654
:param session_id The session ID
16551655
@@ -1713,7 +1713,7 @@ def disable_force_mute(self, session_id: str, active: bool= False) -> requests.R
17131713
raise OpenTokException(
17141714
("There was an error thrown by the OpenTok SDK, please check that your session_id {0} is valid").format(
17151715
session_id))
1716-
1716+
17171717

17181718
def mute_stream(self, session_id: str, stream_id: str) -> requests.Response:
17191719
"""

tests/test_opentok.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def test_disable_force_mute(self):
7474
response.headers["x-opentok-auth"].should.equal(self.jwt_token_string)
7575
response.headers["Content-Type"].should.equal("application/json")
7676

77+
7778
@httpretty.activate
7879
def test_mute_single_stream(self):
7980
self.url = "https://api.opentok.com/v2/project/{0}/session/{1}/stream/{2}/mute".format(

0 commit comments

Comments
 (0)