Commit a9518743 authored by syasonik's avatar syasonik

Remove reference to tracing licensed feature in specs

parent f7af49d8
...@@ -43,9 +43,7 @@ RSpec.describe Projects::TracingsController do ...@@ -43,9 +43,7 @@ RSpec.describe Projects::TracingsController do
end end
end end
describe 'with valid license' do
before do before do
stub_licensed_features(tracing: true)
sign_in(user) sign_in(user)
end end
...@@ -61,16 +59,4 @@ RSpec.describe Projects::TracingsController do ...@@ -61,16 +59,4 @@ RSpec.describe Projects::TracingsController do
it_behaves_like 'user without read access', :private it_behaves_like 'user without read access', :private
end end
end end
context 'with invalid license' do
before do
stub_licensed_features(tracing: false)
sign_in(user)
end
it_behaves_like 'user without read access', :public
it_behaves_like 'user without read access', :internal
it_behaves_like 'user without read access', :private
end
end
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