Skip to content

Commit 9df19e8

Browse files
committed
style(uiMoneyMask): change double quotes to single quotes
1 parent 2392034 commit 9df19e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/global/money/money.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ describe('ui-money-mask', function() {
7070
it('shold allow string as definition of decimals', angular.mock.inject(function($rootScope) {
7171
var input = TestUtil.compile('<input ng-model="model" ui-money-mask="decimals">', {
7272
model: '3456.79',
73-
decimals: "2"
73+
decimals: '2'
7474
});
7575

7676
var model = input.controller('ngModel');
7777
expect(model.$viewValue).toBe('$ 3,456.79');
78-
$rootScope.decimals = "3";
78+
$rootScope.decimals = '3';
7979
$rootScope.$digest();
8080
expect(model.$viewValue).toBe('$ 345.679');
8181
}));

0 commit comments

Comments
 (0)