Skip to content

Commit

Permalink
Merge pull request #303 from opentaps/main
Browse files Browse the repository at this point in the history
utility bills do not cover a year so this is more typical
  • Loading branch information
sichen1234 committed Oct 13, 2021
2 parents 740dd50 + d1f4bcf commit d652dfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utility-emissions-channel/typescript_app/tests/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('E2E-vault', () => {
utilityId: mockUtilityID,
partyId: partyId,
fromDate: '2020-05-07T10:10:09Z',
thruDate: '2021-05-07T10:10:09Z',
thruDate: '2020-06-07T10:10:09Z',
energyUseAmount: 100,
energyUseUom: 'kWh',
})
Expand All @@ -88,7 +88,7 @@ describe('E2E-vault', () => {
uuid = resp.uuid;
resp.utilityId.should.be.eq(mockUtilityID);
resp.fromDate.should.be.eq('2020-05-07T10:10:09Z');
resp.thruDate.should.be.eq('2021-05-07T10:10:09Z');
resp.thruDate.should.be.eq('2020-06-07T10:10:09Z');
done();
} catch (error) {
done();
Expand Down

0 comments on commit d652dfd

Please sign in to comment.