Commit 8bb60be9 authored by Walmyr Lima's avatar Walmyr Lima

Remove unnecessary variable

The variable was used only once and so there is no need for it to
exist. This way we save two lines of code and make the code a bit
simpler.
parent e35d6165
......@@ -15,10 +15,8 @@ module QA
issue.visit!
Page::Project::Issue::Show.perform do |show|
my_first_discussion = 'My first discussion'
show.select_all_activities_filter
show.start_discussion(my_first_discussion)
show.start_discussion('My first discussion')
show.reply_to_discussion(my_first_reply)
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