From 5b54523c249cb5f357c027a4ffbde4cad21b30f7 Mon Sep 17 00:00:00 2001 From: cgeek <cem.moreau@gmail.com> Date: Tue, 7 Mar 2017 17:39:27 +0100 Subject: [PATCH] [fix] Wrong comments --- test/integration/v1.0-g1-dividend.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/v1.0-g1-dividend.js b/test/integration/v1.0-g1-dividend.js index 979dff697..4659467de 100644 --- a/test/integration/v1.0-g1-dividend.js +++ b/test/integration/v1.0-g1-dividend.js @@ -77,7 +77,7 @@ describe("Protocol 1.0 Ğ1 Dividend", function() { it('should have block#12 with UD 1000', () => s1.expectThat('/blockchain/block/12', (json) => { json.dividend.should.equal(1000); - json.should.have.property('medianTime').equal(start + aDay * 11); // 2016-03-19 12:00:00 UTC+0 + json.should.have.property('medianTime').equal(start + aDay * 11); // 2016-03-20 12:00:00 UTC+0 })); it('should have block#13 with UD 1027', () => s1.expectThat('/blockchain/block/13', (json) => { @@ -87,6 +87,6 @@ describe("Protocol 1.0 Ğ1 Dividend", function() { it('should have block#14 with UD 1027', () => s1.expectThat('/blockchain/block/14', (json) => { json.dividend.should.equal(1027); - json.should.have.property('medianTime').equal(start + aDay * 13); // 2016-03-21 12:00:00 UTC+0 + json.should.have.property('medianTime').equal(start + aDay * 13); // 2016-03-22 12:00:00 UTC+0 })); }); -- GitLab