Skip to content

Commit

Permalink
remove spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoegel committed Jun 19, 2024
1 parent 2d2dfd1 commit 9670938
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion spec/call_utils.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Helper functions for voice calls
# Helper functions for voice calls
# These are reused in multiple tests

def setup_manteca(type)
Expand Down
2 changes: 1 addition & 1 deletion spec/smoke/calls_api_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@

# Update Call
describe 'update_call' do
it 'creates and updates a call' do
it 'creates and updates a call' do
update_call_body = Bandwidth::UpdateCall.new(
state: Bandwidth::CallStateEnum::ACTIVE,
redirect_url: MANTECA_BASE_URL + '/bxml/pause'
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
else
!(['/models/call_state_enum.rb',
'/models/call_state.rb',
'/models/deferred_result.rb',
'/models/deferred_result.rb',
'/models/message.rb',
'/models/verify_code_request.rb'
].any? { |name| source_file.filename.include?(name) })
Expand Down
4 changes: 2 additions & 2 deletions spec/unit/client/api_client_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@
expect(api_client_default.build_collection_param(param, :tsv)).to eq("aa\tbb\tcc")
expect(api_client_default.build_collection_param(param, :pipes)).to eq('aa|bb|cc')
expect(api_client_default.build_collection_param(param, :multi)).to eq(['aa', 'bb', 'cc'])
expect {
api_client_default.build_collection_param(param, :INVALID)
expect {
api_client_default.build_collection_param(param, :INVALID)
}.to raise_error(RuntimeError, 'unknown collection format: :INVALID')
end
end
Expand Down

0 comments on commit 9670938

Please sign in to comment.