From f11837dd7b203f622b3b79b5c929b779acbf317a Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sat, 17 Jan 2015 16:48:12 -0800 Subject: [PATCH] Fix cucumber failures due to merge of #3134. --- features/collections.feature | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/collections.feature b/features/collections.feature index 1cdbff4b..91a271fc 100644 --- a/features/collections.feature +++ b/features/collections.feature @@ -118,7 +118,7 @@ Feature: Collections """ When I run jekyll build Then the _site directory should exist - And I should see "Item count: 1" in "_site/index.html" + And I should see "Item count: 2" in "_site/index.html" Scenario: Sort by title Given I have an "index.html" page that contains "{% assign items = site.methods | sort: 'title' %}1. of {{ items.size }}: {{ items.first.output }}" @@ -130,7 +130,7 @@ Feature: Collections """ When I run jekyll build Then the _site directory should exist - And I should see "1. of 6:

Page without title.

" in "_site/index.html" + And I should see "1. of 7:

Page without title.

" in "_site/index.html" Scenario: Sort by relative_path Given I have an "index.html" page that contains "Collections: {% assign methods = site.methods | sort: 'relative_path' %}{% for method in methods %}{{ method.title }}, {% endfor %}"