Skip to content

Commit be6a89d

Browse files
author
Kelly Selden
committed
consistent quotes
1 parent 3531dae commit be6a89d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/fastboot-headers-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe('FastBootHeaders', function() {
3434
var headers = {
3535
// Express concatenates repeated keys with ', '
3636
// and also lowercases the keys
37-
"x-test-header": "value1, value2"
37+
'x-test-header': 'value1, value2'
3838
};
3939
headers = new FastBootHeaders(headers);
4040

@@ -46,7 +46,7 @@ describe('FastBootHeaders', function() {
4646
var headers = {
4747
// Express concatenates repeated keys with ', '
4848
// and also lowercases the keys
49-
"x-test-header": "value1, value2"
49+
'x-test-header': 'value1, value2'
5050
};
5151
headers = new FastBootHeaders(headers);
5252

@@ -58,7 +58,7 @@ describe('FastBootHeaders', function() {
5858
var headers = {
5959
// Express concatenates repeated keys with ', '
6060
// and also lowercases the keys
61-
"x-test-header": "value1, value2"
61+
'x-test-header': 'value1, value2'
6262
};
6363
headers = new FastBootHeaders(headers);
6464

0 commit comments

Comments
 (0)