anandrajwani / apex-google-visualization

Automatically exported from code.google.com/p/apex-google-visualization
0 stars 0 forks source link

Test code assumes locale is "English (United States)" #1

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Set your user locale to "English (United Kingdom)"
2. Run all tests
3. GoogleReferenceJSONStringTest2 fails on line 362, because the following 
expected and actual 
strings do not match (call to DateTime.format() produces localized string, but 
the expected string 
is hard coded in United States locale):

Expected:
{cols: [{id: "A", label: "NEW A", type: "string"},{id: "B", label: "B-label", 
type: "number"},{id: "C", 
label: "C-label", type: "date"}], rows: [{c:[{v: "a"},{v: "1"},{v: new 
Date(2008, 1, 28, 0, 31, 26), f: 
"2/28/2008 12:31 AM"}]},{c:[{v: "b"},{v: "2"},{v: new Date(2008, 2, 30, 0, 31, 
26), f: "3/30/2008 
12:31 AM"}]},{c:[{v: "c"},{v: "3"},{v: new Date(2008, 3, 30, 0, 31, 26), f: 
"4/30/2008 12:31 AM"}]}]}

Actual:
{cols: [{id: "A", label: "NEW A", type: "string"},{id: "B", label: "B-label", 
type: "number"},{id: "C", 
label: "C-label", type: "date"}], rows: [{c:[{v: "a"},{v: "1"},{v: new 
Date(2008, 1, 28, 0, 31, 26), f: 
"28/02/2008 00:31"}]},{c:[{v: "b"},{v: "2"},{v: new Date(2008, 2, 30, 0, 31, 
26), f: "30/03/2008 
00:31"}]},{c:[{v: "c"},{v: "3"},{v: new Date(2008, 3, 30, 0, 31, 26), f: 
"30/04/2008 00:31"}]}]} 

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by bo.laure...@gmail.com on 7 Jun 2010 at 4:50

GoogleCodeExporter commented 8 years ago

Original comment by bo.laure...@gmail.com on 7 Jun 2010 at 5:14

Attachments: