@@ -23,7 +23,7 @@ tmpdir.refresh();
23
23
const sessionPath = path . join ( tmpdir . path , 'sess.pem' ) ;
24
24
25
25
const server = tls
26
- . createServer ( options , ( s ) => s . end ( 'eyecatcher ' ) )
26
+ . createServer ( options , ( s ) => s . end ( 'ok ' ) )
27
27
. listen ( 0 , '127.0.0.1' , common . mustCall ( go ) ) ;
28
28
29
29
function go ( ) {
@@ -42,7 +42,6 @@ function go() {
42
42
proc . stdout . pipe ( process . stdout ) ; // For debugging.
43
43
proc . on ( 'exit' , common . mustCall ( ( exitCode , signalCode ) => {
44
44
assert . strictEqual ( exitCode , 0 ) ;
45
- assert ( stdout . includes ( 'eyecatcher' ) ) ;
46
45
assert ( stdout . includes ( 'Early data was not sent' ) ) ;
47
46
assert ( stdout . includes ( 'New, TLSv1.3, Cipher is TLS_' ) ) ;
48
47
next ( ) ;
@@ -66,7 +65,6 @@ function next() {
66
65
proc . stdout . pipe ( process . stdout ) ; // For debugging.
67
66
proc . on ( 'exit' , common . mustCall ( ( exitCode , signalCode ) => {
68
67
assert . strictEqual ( exitCode , 0 ) ;
69
- assert ( stdout . includes ( 'eyecatcher' ) ) ;
70
68
assert ( stdout . includes ( 'Early data was not sent' ) ) ;
71
69
assert ( stdout . includes ( 'Reused, TLSv1.3, Cipher is TLS_' ) ) ;
72
70
assert ( ! stdout . includes ( 'Early data was accepted' ) ) ;
0 commit comments