From 9f8f0314693c61f516af7fe68e1022acb508b2d0 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 10 Nov 2016 15:30:51 -0800 Subject: [PATCH] Whoops, an *actually useful* failing test. --- test/test_url.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_url.rb b/test/test_url.rb index c39e51f2..4c0320a7 100644 --- a/test/test_url.rb +++ b/test/test_url.rb @@ -73,8 +73,8 @@ class TestURL < JekyllUnitTest should "check for key without trailing underscore" do _, matching_doc = fixture_document("_methods/configuration.md") - assert_equal "/lol", URL.new( - :template => "/:year-:month-:day_:title", + assert_equal "/methods/2016-11-10_configuration", URL.new( + :template => "/methods/:year-:month-:day_:title", :placeholders => matching_doc.url_placeholders ).to_s end