Fix expectation for StaticFile#to_liquid in tests.
This commit is contained in:
parent
d15e4a9c8a
commit
dead70724e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue