@@ -5,7 +5,7 @@ import { startTestServer } from '../../../testing/integration-testing-hooks';
55import {
66 useTmpdir ,
77 setTemporaryHomeDirectory ,
8- readReplLogfile ,
8+ readReplLogFile ,
99 getCertPath ,
1010 connectionStringWithLocalhost ,
1111} from './repl-helpers' ;
@@ -241,7 +241,7 @@ describe('e2e TLS', function () {
241241 expect ( prompt . state ) . to . equal ( 'prompt' ) ;
242242
243243 const logPath = path . join ( logBasePath , `${ shell . logId } _log` ) ;
244- const logContents = await readReplLogfile ( logPath ) ;
244+ const logContents = await readReplLogFile ( logPath ) ;
245245 expect (
246246 logContents . find ( ( line ) => line . id . __value === 1_000_000_049 ) ?. attr
247247 . asyncFallbackError
@@ -278,7 +278,7 @@ describe('e2e TLS', function () {
278278 expect ( prompt . state ) . to . equal ( 'prompt' ) ;
279279
280280 const logPath = path . join ( logBasePath , `${ shell . logId } _log` ) ;
281- const logContents = await readReplLogfile ( logPath ) ;
281+ const logContents = await readReplLogFile ( logPath ) ;
282282 expect (
283283 logContents . find ( ( line ) => line . id . __value === 1_000_000_049 ) ?. attr
284284 . asyncFallbackError
@@ -308,7 +308,7 @@ describe('e2e TLS', function () {
308308 expect ( prompt . state ) . to . equal ( 'exit' ) ;
309309
310310 const logPath = path . join ( logBasePath , `${ shell . logId } _log` ) ;
311- const logContents = await readReplLogfile ( logPath ) ;
311+ const logContents = await readReplLogFile ( logPath ) ;
312312 expect ( logContents . find ( ( line ) => line . id . __value === 1_000_000_049 ) ) . to
313313 . exist ;
314314 } ) ;
0 commit comments