Skip to content

Commit b33599e

Browse files
committed
rubocop:disable RSpec/RepeatedExampleGroupBody
1 parent 78f39f0 commit b33599e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

spec/acceptance/mongos_spec.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ class { 'mongodb::server':
4848
it { is_expected.to be_running }
4949
end
5050

51-
describe port(27_017) do
51+
describe port(27_017) do # rubocop:disable RSpec/RepeatedExampleGroupBody
5252
it { is_expected.to be_listening }
5353
end
5454

55-
describe port(27_019) do
55+
describe port(27_019) do # rubocop:disable RSpec/RepeatedExampleGroupBody
5656
it { is_expected.to be_listening }
5757
end
5858

@@ -90,11 +90,11 @@ class { 'mongodb::mongos':
9090
it { is_expected.not_to be_running }
9191
end
9292

93-
describe port(27_017) do
93+
describe port(27_017) do # rubocop:disable RSpec/RepeatedExampleGroupBody
9494
it { is_expected.not_to be_listening }
9595
end
9696

97-
describe port(27_019) do
97+
describe port(27_019) do # rubocop:disable RSpec/RepeatedExampleGroupBody
9898
it { is_expected.not_to be_listening }
9999
end
100100
end

spec/acceptance/server_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ class { 'mongodb::server':
185185
it { is_expected.not_to be_running }
186186
end
187187

188-
describe port(27_017) do
188+
describe port(27_017) do # rubocop:disable RSpec/RepeatedExampleGroupBody
189189
it { is_expected.not_to be_listening }
190190
end
191191

192-
describe port(27_018) do
192+
describe port(27_018) do # rubocop:disable RSpec/RepeatedExampleGroupBody
193193
it { is_expected.not_to be_listening }
194194
end
195195
end

0 commit comments

Comments
 (0)