Skip to content

Commit

Permalink
Fix expected output for "full" date format
Browse files Browse the repository at this point in the history
  • Loading branch information
sharwell committed Sep 13, 2016
1 parent afcc0fd commit 672f0d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Antlr4.Test.StringTemplate/TestRenderers.cs
Expand Up @@ -106,7 +106,7 @@ public void TestRendererWithPredefinedFormat2()
group.RegisterRenderer(typeof(DateTimeOffset), new DateRenderer());
Template st = group.GetInstanceOf("dateThing");
st.Add("created", new DateTime(2005, 7, 5));
string expecting = " datetime: Tuesday, July 05, 2005 12:00:00 AM ";
string expecting = " datetime: Tuesday, July 5, 2005 12:00:00 AM ";
string result = st.Render();
Assert.AreEqual(expecting, result);
}
Expand Down

0 comments on commit 672f0d1

Please sign in to comment.