diff --git a/MustacheSharp.Tests/FormatCompilerTester.cs b/MustacheSharp.Tests/FormatCompilerTester.cs index 2b4e574..64faf57 100644 --- a/MustacheSharp.Tests/FormatCompilerTester.cs +++ b/MustacheSharp.Tests/FormatCompilerTester.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Globalization; using System.IO; using System.Linq; using System.Web; @@ -1366,7 +1367,8 @@ Your order total was: {{Total:C}} {{/if}} {{/with}}"; Generator generator = compiler.Compile(format); - string result = generator.Render(new + + string result = generator.Render(CultureInfo.GetCultureInfo("en-US"), new { Customer = new { FirstName = "Bob" }, Order = new