@@ -96,7 +96,7 @@ const ca = readKey('fake-startcom-root-cert.pem', 'binary');
96
96
client . on ( 'origin' , mustCall ( ( origins ) => {
97
97
const check = checks . shift ( ) ;
98
98
originSet . push ( ...check ) ;
99
- deepStrictEqual ( originSet , client . originSet ) ;
99
+ deepStrictEqual ( client . originSet , originSet ) ;
100
100
deepStrictEqual ( origins , check ) ;
101
101
countdown . dec ( ) ;
102
102
} , 2 ) ) ;
@@ -121,7 +121,7 @@ const ca = readKey('fake-startcom-root-cert.pem', 'binary');
121
121
122
122
client . on ( 'origin' , mustCall ( ( origins ) => {
123
123
originSet . push ( ...check ) ;
124
- deepStrictEqual ( originSet , client . originSet ) ;
124
+ deepStrictEqual ( client . originSet , originSet ) ;
125
125
deepStrictEqual ( origins , check ) ;
126
126
client . close ( ) ;
127
127
server . close ( ) ;
@@ -148,11 +148,11 @@ const ca = readKey('fake-startcom-root-cert.pem', 'binary');
148
148
const client = connect ( origin , { ca } ) ;
149
149
150
150
client . on ( 'origin' , mustCall ( ( origins ) => {
151
- deepStrictEqual ( [ origin , 'https://foo.org' ] , client . originSet ) ;
151
+ deepStrictEqual ( client . originSet , [ origin , 'https://foo.org' ] ) ;
152
152
const req = client . request ( { ':authority' : 'foo.org' } ) ;
153
153
req . on ( 'response' , mustCall ( ( headers ) => {
154
- strictEqual ( 421 , headers [ ':status' ] ) ;
155
- deepStrictEqual ( [ origin ] , client . originSet ) ;
154
+ strictEqual ( headers [ ':status' ] , 421 ) ;
155
+ deepStrictEqual ( client . originSet , [ origin ] ) ;
156
156
} ) ) ;
157
157
req . resume ( ) ;
158
158
req . on ( 'close' , mustCall ( ( ) => {
0 commit comments