diff --git a/test/defaultLocale-test.js b/test/defaultLocale-test.js index 6277505..0a35ba5 100644 --- a/test/defaultLocale-test.js +++ b/test/defaultLocale-test.js @@ -26,7 +26,7 @@ tape("d3.utcParse(specifier) defaults to en-US", function(test) { tape("d3.timeFormatDefaultLocale(definition) returns the new default locale", function(test) { var locale = d3.timeFormatDefaultLocale(frFr); try { - test.equal(locale.format("%c")(new Date(2000, 0, 1)), "samedi, le 1 janvier 2000, 00:00:00"); + test.equal(locale.format("%c")(new Date(2000, 0, 1)), "samedi 1 janvier 2000 à 00:00:00"); test.end(); } finally { d3.timeFormatDefaultLocale(enUs); @@ -37,7 +37,7 @@ tape("d3.timeFormatDefaultLocale(definition) affects d3.timeFormat", function(te var locale = d3.timeFormatDefaultLocale(frFr); try { test.equal(d3.timeFormat, locale.format); - test.equal(d3.timeFormat("%c")(new Date(2000, 0, 1)), "samedi, le 1 janvier 2000, 00:00:00"); + test.equal(d3.timeFormat("%c")(new Date(2000, 0, 1)), "samedi 1 janvier 2000 à 00:00:00"); test.end(); } finally { d3.timeFormatDefaultLocale(enUs); @@ -48,7 +48,7 @@ tape("d3.timeFormatDefaultLocale(definition) affects d3.timeParse", function(tes var locale = d3.timeFormatDefaultLocale(frFr); try { test.equal(d3.timeParse, locale.parse); - test.equal(+d3.timeParse("%c")("samedi, le 1 janvier 2000, 00:00:00"), +new Date(2000, 0, 1)); + test.equal(+d3.timeParse("%c")("samedi 1 janvier 2000 à 00:00:00"), +new Date(2000, 0, 1)); test.end(); } finally { d3.timeFormatDefaultLocale(enUs); @@ -59,7 +59,7 @@ tape("d3.timeFormatDefaultLocale(definition) affects d3.utcFormat", function(tes var locale = d3.timeFormatDefaultLocale(frFr); try { test.equal(d3.utcFormat, locale.utcFormat); - test.equal(d3.utcFormat("%c")(new Date(Date.UTC(2000, 0, 1))), "samedi, le 1 janvier 2000, 00:00:00"); + test.equal(d3.utcFormat("%c")(new Date(Date.UTC(2000, 0, 1))), "samedi 1 janvier 2000 à 00:00:00"); test.end(); } finally { d3.timeFormatDefaultLocale(enUs); @@ -70,7 +70,7 @@ tape("d3.timeFormatDefaultLocale(definition) affects d3.utcParse", function(test var locale = d3.timeFormatDefaultLocale(frFr); try { test.equal(d3.utcParse, locale.utcParse); - test.equal(+d3.utcParse("%c")("samedi, le 1 janvier 2000, 00:00:00"), +new Date(Date.UTC(2000, 0, 1))); + test.equal(+d3.utcParse("%c")("samedi 1 janvier 2000 à 00:00:00"), +new Date(Date.UTC(2000, 0, 1))); test.end(); } finally { d3.timeFormatDefaultLocale(enUs);