Skip to content

Commit 3198e1e

Browse files
committed
Correct text in 'it' strings for default_reviewers_spec
1 parent 4443937 commit 3198e1e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/bitbucket_rest_api/repos/default_reviewers_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)
1313
end
1414

15-
it 'makes a GET request for all pull requests belonging to the repo' do
15+
it 'makes a GET request for all default reviewers belonging to the repo' do
1616
subject.list('mock_user', 'mock_repo')
1717
end
1818
end
@@ -27,7 +27,7 @@
2727
)
2828
end
2929

30-
it 'makes a GET request for all pull requests belonging to the repo' do
30+
it 'makes a GET request for a default reviewer by username' do
3131
subject.get('mock_user', 'mock_repo', 'mock_reviewer')
3232
end
3333
end
@@ -42,7 +42,7 @@
4242
)
4343
end
4444

45-
it 'makes a GET request for all pull requests belonging to the repo' do
45+
it 'makes a PUT request to add the new reviewer to the default reviewers list' do
4646
subject.add('mock_user', 'mock_repo', 'mock_reviewer')
4747
end
4848
end
@@ -57,7 +57,7 @@
5757
)
5858
end
5959

60-
it 'makes a GET request for all pull requests belonging to the repo' do
60+
it 'makes a DELETE request to remove a reviewer from the list' do
6161
subject.remove('mock_user', 'mock_repo', 'mock_reviewer')
6262
end
6363
end

0 commit comments

Comments
 (0)