diff --git a/test/source/sitemap.xml b/test/source/sitemap.xml
index 96b38a14..8d9f0fcd 100644
--- a/test/source/sitemap.xml
+++ b/test/source/sitemap.xml
@@ -3,21 +3,21 @@ layout: nil
---
-
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+
- http://example.com
- {{ site.time | date_to_xmlschema }}
- daily
- 1.0
-
-
- {% for post in site.posts %}
-
- http://example.com/{{ post.url }}/
- {{ site.time }}
- monthly
- 0.2
-
- {% endfor %}
-
\ No newline at end of file
+ http://example.com
+ {{ site.time | date: "%Y-%m-%d" }}
+ daily
+ 1.0
+
+
+ {% for post in site.posts %}
+
+ http://example.com/{{ post.url }}/
+ {{ post.date | date: "%Y-%m-%d" }}
+ monthly
+ 0.2
+
+ {% endfor %}
+