Commit c1d1fcfb authored by Felipe Artur's avatar Felipe Artur

Move migration to ee folder and fix typo

parent a91aeafa
...@@ -57,7 +57,7 @@ describe Groups::EpicsController do ...@@ -57,7 +57,7 @@ describe Groups::EpicsController do
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(200)
end end
context 'when there is no logged user' do context 'when there is no logged in user' do
it 'stores sorting param in a cookie' do it 'stores sorting param in a cookie' do
group.update!(visibility_level: Gitlab::VisibilityLevel::PUBLIC) group.update!(visibility_level: Gitlab::VisibilityLevel::PUBLIC)
sign_out(user) sign_out(user)
...@@ -69,7 +69,7 @@ describe Groups::EpicsController do ...@@ -69,7 +69,7 @@ describe Groups::EpicsController do
end end
end end
context 'when there is a logged user' do context 'when there is a logged in user' do
context 'when epics_sort is nil' do context 'when epics_sort is nil' do
it 'stores sorting param in user preferences' do it 'stores sorting param in user preferences' do
get :index, group_id: group, sort: 'start_date_asc' get :index, group_id: group, sort: 'start_date_asc'
......
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