| Index: test/mjsunit/date.js
|
| diff --git a/test/mjsunit/date.js b/test/mjsunit/date.js
|
| index 257d99ca9e94a9b6f86a8f9c4e8a5ea3157a0142..244a04202c5dc4f4a48816d6cc071eaa301333a4 100644
|
| --- a/test/mjsunit/date.js
|
| +++ b/test/mjsunit/date.js
|
| @@ -146,16 +146,6 @@ l.setUTCMilliseconds();
|
| l.setUTCMilliseconds(2);
|
| assertTrue(isNaN(l.getUTCMilliseconds()));
|
|
|
| -// Test that toLocaleTimeString only returns the time portion of the
|
| -// date without the timezone information.
|
| -function testToLocaleTimeString() {
|
| - var d = new Date();
|
| - var s = d.toLocaleTimeString("en-GB");
|
| - assertEquals(8, s.length);
|
| -}
|
| -
|
| -testToLocaleTimeString();
|
| -
|
| // Test that -0 is treated correctly in MakeDay.
|
| var d = new Date();
|
| assertDoesNotThrow("d.setDate(-0)");
|
|
|