Skip to content

Commit 7da1d06

Browse files
authored
Merge pull request #254 from opentok/dev
Update to resolve issue with gem build command (#253)
2 parents 47009ca + 11fc496 commit 7da1d06

5 files changed

+3
-3
lines changed

spec/opentok/archives_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@
5050
expect(archive.multiArchiveTag).to eq archive_tag
5151
end
5252

53-
it "should create an archives with a matching multi_archive_tag tag value when multiArchiveTag is specified", :vcr => { :erb => { :version => OpenTok::VERSION + "-Ruby-Version-#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"} } do
53+
it "should create an archive with matching multi_archive_tag when multiArchiveTag is specified", :vcr => { :erb => { :version => OpenTok::VERSION + "-Ruby-Version-#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"} } do
5454
archive_tag = 'archive-1'
5555
archive = archives.create session_id, :multiArchiveTag => archive_tag
5656
expect(archive).to be_an_instance_of OpenTok::Archive
5757
expect(archive.multi_archive_tag).to eq archive_tag
5858
end
5959

60-
it "should create an archives with a multi_archive_tag tag value of nil when multiArchiveTag is not specified", :vcr => { :erb => { :version => OpenTok::VERSION + "-Ruby-Version-#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"} } do
60+
it "should create an archive with multi_archive_tag value of nil when multiArchiveTag not specified", :vcr => { :erb => { :version => OpenTok::VERSION + "-Ruby-Version-#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"} } do
6161
archive = archives.create session_id
6262
expect(archive).to be_an_instance_of OpenTok::Archive
6363
expect(archive.multi_archive_tag).to be_nil

spec/opentok/broadcasts_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
expect(broadcast_1.multi_broadcast_tag).to eq broadcast_tag
121121
end
122122

123-
it 'starts a broadcast with a multi_broadcast_tag tag value of nil when multiBroadcastTag is not specified', :vcr => { :erb => { :version => OpenTok::VERSION + "-Ruby-Version-#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"} } do
123+
it 'starts a broadcast with a multi_broadcast_tag value of nil when multiBroadcastTag not specified', :vcr => { :erb => { :version => OpenTok::VERSION + "-Ruby-Version-#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"} } do
124124
opts = {
125125
:outputs => {
126126
:hls => {}

0 commit comments

Comments
 (0)