Commit 43fe0e2e authored by Alex Kalderimis's avatar Alex Kalderimis

Remove references to service in flowdock model spec

parent 14d227f3
...@@ -9,7 +9,7 @@ RSpec.describe Integrations::Flowdock do ...@@ -9,7 +9,7 @@ RSpec.describe Integrations::Flowdock do
end end
describe 'Validations' do describe 'Validations' do
context 'when service is active' do context 'when integration is active' do
before do before do
subject.active = true subject.active = true
end end
...@@ -17,7 +17,7 @@ RSpec.describe Integrations::Flowdock do ...@@ -17,7 +17,7 @@ RSpec.describe Integrations::Flowdock do
it { is_expected.to validate_presence_of(:token) } it { is_expected.to validate_presence_of(:token) }
end end
context 'when service is inactive' do context 'when integration is inactive' do
before do before do
subject.active = false subject.active = false
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment