diff --git a/test/test_static_file.rb b/test/test_static_file.rb index 97206263..3285f952 100644 --- a/test/test_static_file.rb +++ b/test/test_static_file.rb @@ -75,9 +75,9 @@ class TestStaticFile < JekyllUnitTest should "be able to convert to liquid" do expected = { - "path" => "/static_file.txt", - "modified_time" => @static_file.mtime.to_s, - "extname" => ".txt" + "extname" => ".txt", + "modified_time" => @static_file.modified_time, + "path" => "/static_file.txt", } assert_equal expected, @static_file.to_liquid end