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
|
should "be able to convert to liquid" do
|
||||||
expected = {
|
expected = {
|
||||||
"path" => "/static_file.txt",
|
"extname" => ".txt",
|
||||||
"modified_time" => @static_file.mtime.to_s,
|
"modified_time" => @static_file.modified_time,
|
||||||
"extname" => ".txt"
|
"path" => "/static_file.txt",
|
||||||
}
|
}
|
||||||
assert_equal expected, @static_file.to_liquid
|
assert_equal expected, @static_file.to_liquid
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue