From: Francesco Montorsi <f18m_cpp217828@yahoo.it>
Date: Mon, 23 Mar 2009 12:17:39 +0000 (+0000)
Subject: fix typo; use C locale for VsnprintfTestCase
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/12e91a550ce83c8582dd966c78c38a04d8cae124

fix typo; use C locale for VsnprintfTestCase

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59765 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/tests/strings/vsnprintf.cpp b/tests/strings/vsnprintf.cpp
index 8353178303..bc51eb14d1 100644
--- a/tests/strings/vsnprintf.cpp
+++ b/tests/strings/vsnprintf.cpp
@@ -117,7 +117,7 @@ class VsnprintfTestCase : public CppUnit::TestCase
 {
 public:
     VsnprintfTestCase();
-
+    
 private:
     CPPUNIT_TEST_SUITE( VsnprintfTestCase );
         CPPUNIT_TEST( C );
@@ -188,7 +188,7 @@ VsnprintfTestCase::VsnprintfTestCase()
 {
     // this call is required to avoid check failures when running on machines
     // with a locale where the decimal point is not '.'
-    wxSetlocale(LC_NUMERIC, "English");
+    wxSetlocale(LC_NUMERIC, "C");
 }
 
 void VsnprintfTestCase::C()