Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
verbs -> verb
  • Loading branch information
ajrice6713 committed Aug 1, 2022
commit 18609e2b8313ed6941f012c537c80ac5f6ae14f7
4 changes: 2 additions & 2 deletions bandwidth/tests/test_bxml.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def test_generate_transfer_bxml_verb(self):
'asdf', 'c-93d6f3c0-be584596-0b74-4fa2-8015-d8ede84bd1a4')
assert actual == expected

def test_start_stream_bxml_verbs(self):
def test_start_stream_bxml_verb(self):
expected = '<?xml version="1.0" encoding="UTF-8"?><Response><StartStream destination="https://www.test.com/stream" name="test_stream" streamEventUrl="https://www.test.com/event" streamEventMethod="POST" username="username" password="password"/></Response>'
response = Response()
start_stream = StartStream(
Expand All @@ -424,7 +424,7 @@ def test_start_stream_bxml_verbs(self):

assert expected == actual

def test_stop_stream_bxml_verbs(self):
def test_stop_stream_bxml_verb(self):
expected = '<?xml version="1.0" encoding="UTF-8"?><Response><StopStream name="test_stream"/></Response>'
response = Response()
stop_stream = StopStream(
Expand Down