Skip to content

Commit b1a53bc

Browse files
committed
Be consistent...
1 parent 613562a commit b1a53bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ test('[] used in name', 1, function () {
4343
equal($.cookie('c[999]'), 'foo', 'should return value');
4444
});
4545

46-
test('embedded equals', 1, function() {
46+
test('embedded equals', 1, function () {
4747
$.cookie('c', 'foo=bar', { raw: true });
4848
equal($.cookie('c', { raw: true }), 'foo=bar', 'should include the entire value');
4949
});
@@ -67,12 +67,12 @@ test('String object', 1, function () {
6767
equal($.cookie('c'), 'v', 'should write value');
6868
});
6969

70-
test('value "[object Object]"', 1, function() {
70+
test('value "[object Object]"', 1, function () {
7171
$.cookie('c', '[object Object]');
7272
equal($.cookie('c'), '[object Object]', 'should write value');
7373
});
7474

75-
test('number', 1, function() {
75+
test('number', 1, function () {
7676
$.cookie('c', 1234);
7777
equal($.cookie('c'), '1234', 'should write value');
7878
});

0 commit comments

Comments
 (0)