diff options
author | Tim Zallmann <tzallmann@gitlab.com> | 2017-06-08 00:02:31 +0200 |
---|---|---|
committer | Tim Zallmann <tzallmann@gitlab.com> | 2017-06-08 00:02:31 +0200 |
commit | 81b565ee36179561dcae8d428a712fa5fe1cc04b (patch) | |
tree | c22fe6bc297304768103c936aa197d28297ef2be /spec/features | |
parent | 9647d2e76d05e8720bfe695918e292e57307900e (diff) | |
download | gitlab-ce-81b565ee36179561dcae8d428a712fa5fe1cc04b.tar.gz |
Fix End Syntax Error
Diffstat (limited to 'spec/features')
-rw-r--r-- | spec/features/explore/new_menu_spec.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/features/explore/new_menu_spec.rb b/spec/features/explore/new_menu_spec.rb index ae65f25d48b..cbd97ff74b3 100644 --- a/spec/features/explore/new_menu_spec.rb +++ b/spec/features/explore/new_menu_spec.rb @@ -149,7 +149,6 @@ feature 'Top Plus Menu', feature: true, js: true do end def hasnot_topmenuitem(item_name) - expect(find('.header-new.dropdown')).not_to have_content(item_name) - end - end + expect(find('.header-new.dropdown')).not_to have_content(item_name) + end end |