Skip to content

Commit c3a3d60

Browse files
committed
Corrige problemas de lint (rubocop)
1 parent 425990e commit c3a3d60

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

spec/services/invitation_request_service/colabora_invitation_request_post_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
expect(json_response['data']['proposal_id']).to eq 1
1616
end
1717
end
18-
end
18+
end

spec/services/invitation_request_service/invitation_request_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@
5252
expect(result).to be_empty
5353
end
5454
end
55-
end
55+
end

spec/services/projects_service/colabora_api_get_projects_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
it 'retorna array de objetos do tipo Project' do
66
json_data = File.read(Rails.root.join('./spec/support/json/projects.json'))
77
fake_response = double('faraday_response', success?: true, body: json_data)
8-
8+
99
allow(Faraday).to receive(:get).with('http://localhost:3000/api/v1/projects').and_return(fake_response)
10-
10+
1111
result = ProjectsService::ColaBoraApiGetProjects.send
1212

1313
json_response = JSON.parse(result.body)

0 commit comments

Comments
 (0)