Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/task_lists_spec.rb')
-rw-r--r--spec/features/task_lists_spec.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/spec/features/task_lists_spec.rb b/spec/features/task_lists_spec.rb
index 8a9d2ff42d9..beadeab1736 100644
--- a/spec/features/task_lists_spec.rb
+++ b/spec/features/task_lists_spec.rb
@@ -137,8 +137,7 @@ RSpec.describe 'Task Lists', :js, feature_category: :team_planning do
describe 'multiple tasks' do
let!(:note) do
- create(:note, note: markdown, noteable: issue,
- project: project, author: user)
+ create(:note, note: markdown, noteable: issue, project: project, author: user)
end
it 'renders for note body' do
@@ -171,8 +170,7 @@ RSpec.describe 'Task Lists', :js, feature_category: :team_planning do
describe 'single incomplete task' do
let!(:note) do
- create(:note, note: single_incomplete_markdown, noteable: issue,
- project: project, author: user)
+ create(:note, note: single_incomplete_markdown, noteable: issue, project: project, author: user)
end
it 'renders for note body' do
@@ -186,8 +184,7 @@ RSpec.describe 'Task Lists', :js, feature_category: :team_planning do
describe 'single complete task' do
let!(:note) do
- create(:note, note: single_complete_markdown, noteable: issue,
- project: project, author: user)
+ create(:note, note: single_complete_markdown, noteable: issue, project: project, author: user)
end
it 'renders for note body' do