Skip to content

Commit c440ea5

Browse files
author
Thomas Christensen
committed
update spec test
1 parent 1ba0a20 commit c440ea5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/global/money/money.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,14 @@ describe('ui.utils.masks.money', function() {
110110
});
111111

112112
it('should add currency after value', function() {
113-
var currency = 'R$ ';
113+
var currency = ' R$';
114114

115115
var input = element(by.model('currencyAfterValue'));
116116

117117
input.clear(); //Clear to send invalid content
118118
input.sendKeys('1');
119119

120-
expect(input.getAttribute('value')).toEqual('0,01 ' + currency);
120+
expect(input.getAttribute('value')).toEqual('0,01' + currency);
121121
});
122122
});
123123
});

0 commit comments

Comments
 (0)