Skip to content
Open
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
4 changes: 2 additions & 2 deletions spec/twiml/voice_response_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@
</Response>
XML
dial = Twilio::TwiML::Dial.new
dial.sip 'foo@example.com'
dial.sip(sip_url: 'foo@example.com')

response = Twilio::TwiML::VoiceResponse.new
response.append(dial)
Expand All @@ -642,7 +642,7 @@
</Response>
XML
dial = Twilio::TwiML::Dial.new
dial.sip('foo@example.com', username: 'foo', password: 'bar')
dial.sip(sip_url: 'foo@example.com', username: 'foo', password: 'bar')

response = Twilio::TwiML::VoiceResponse.new
response.append(dial)
Expand Down
Loading