fix a broken spec in Travis CI
did
committed Nov 17, 2016
commit 08c834de61910f3f7a8abfa365b21be9f835bc93
Showing 2
changed files with
2 additions
and 2 deletions
spec/fixtures/default/app/views/pages/all.liquid.haml
+1
-1
| @@ | @@ -11,6 +11,6 @@ published: true |
| {% endfor %} | |
| </ul> | |
| - | <!-- TEST -->{{ site.index.children | map: 'title' | join: " - " }}<!-- TEST --> |
| + | <!-- TEST -->{{ site.index.children | map: 'title' | sort | join: " - " }}<!-- TEST --> |
| {% endblock %} | |
spec/integration/server/nav_spec.rb
+1
-1
| @@ | @@ -30,7 +30,7 @@ describe Locomotive::Steam::Server do |
| end | |
| it 'lists all the pages from the site liquid drop' do | |
| - | is_expected.to include('<!-- TEST -->About Us - Music - Store - Contact Us - Events - Basic page - A sample contest - Various uses of the with_scope tag - Grunge leaders - Tags - Unlisted pages - Archives - Account - All the pages - Emails - Layouts - Songs<!-- TEST -->') |
| + | is_expected.to include('<!-- TEST -->A sample contest - About Us - Account - All the pages - Archives - Basic page - Contact Us - Emails - Events - Grunge leaders - Layouts - Music - Songs - Store - Tags - Unlisted pages - Various uses of the with_scope tag<!-- TEST -->') |
| end | |
| describe 'with wrapper' do | |