From 9e11a7f35f4d738ca383be971b2edd92bb7240d8 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sun, 11 Aug 2013 12:40:28 +0200 Subject: [PATCH] Fix date format in permalink.features. --- features/permalinks.feature | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/permalinks.feature b/features/permalinks.feature index 639b56a1..64b3c173 100644 --- a/features/permalinks.feature +++ b/features/permalinks.feature @@ -68,7 +68,7 @@ Feature: Fancy permalinks Given I have a _posts directory And I have the following post: | title | date | permalink | content | - | Some post | 4/14/2013 | /custom/posts/1 | bla bla | + | Some post | 2013-04-14 | /custom/posts/1 | bla bla | When I run jekyll Then the _site directory should exist And the _site/custom/posts/1 directory should exist @@ -78,7 +78,7 @@ Feature: Fancy permalinks Given I have a _posts directory And I have the following post: | title | date | permalink | content | - | Some post | 4/14/2013 | /custom/posts/some.html | bla bla | + | Some post | 2013-04-14 | /custom/posts/some.html | bla bla | When I run jekyll Then the _site directory should exist And the _site/custom/posts directory should exist