3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-14 11:15:51 +00:00

Make BlockTest.testDate pass outside of CET.

This commit is contained in:
Mike Hearn 2012-02-02 15:37:24 +01:00
parent 9afa4bf6a5
commit 3d470ec3f2

View File

@ -58,7 +58,7 @@ public class BlockTest {
@Test
public void testDate() throws Exception {
Block block = new Block(params, blockBytes);
assertEquals("Thu Nov 04 17:06:04 CET 2010", block.getTime().toString());
assertEquals("4 Nov 2010 16:06:04 GMT", block.getTime().toGMTString());
}
@Test