Skip to content

Commit

Permalink
Update test inline w/ new way we format 0s
Browse files Browse the repository at this point in the history
  • Loading branch information
foot committed Feb 8, 2016
1 parent fd55c30 commit 2695a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/scripts/utils/__tests__/string-utils-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('StringUtils', function() {
const formatMetric = StringUtils.formatMetric;

it('it should render 0', function() {
expect(formatMetric(0)).toBe(0);
expect(formatMetric(0)).toBe('0.00');
});
});
});

0 comments on commit 2695a1a

Please sign in to comment.