Skip to content

Commit

Permalink
fixed conversion unit
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindb24 committed Oct 21, 2024
1 parent 1071cc3 commit f364a72
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/server/test/web/readingsBarGroupQuantity.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,13 @@ mocha.describe('readings API', () => {
]);
const conversionData = conversionDatakWh.concat([
{
// c2
sourceName: 'kWh',
destinationName: 'MJ',
// c6
sourceName: 'MJ',
destinationName: 'kWh',
bidirectional: true,
slope: 3.6,
slope: 1 / 3.6,
intercept: 0,
note: 'kWhMJ'
note: 'MJkWh'
},
{
// c3
Expand Down

0 comments on commit f364a72

Please sign in to comment.