Update test inline w/ new way we format 0s

This commit is contained in:
Simon Howe
2016-02-08 20:08:24 +07:00
parent fd55c3064a
commit 2695a1a2e7

View File

@@ -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');
});
});
});