@@ -236,7 +236,7 @@ test("HTTPPlugin: setupCf: cf fetch caches cf.json at default location", async (
236236 } ) ;
237237 const cf = await fs . readFile ( cfPath , "utf8" ) ;
238238 t . is ( cf , '{"colo": "LHR"}' ) ;
239- t . is ( log . logsAtLevel ( LogLevel . INFO ) [ 0 ] , "Updated Request cf object cache!" ) ;
239+ t . is ( log . logsAtLevel ( LogLevel . INFO ) [ 0 ] , "Updated ` Request.cf` object cache!" ) ;
240240} ) ;
241241test ( "HTTPPlugin: setupCf: cf fetch caches cf.json at custom location" , async ( t ) => {
242242 const tmp = await useTmp ( t ) ;
@@ -258,7 +258,7 @@ test("HTTPPlugin: setupCf: cf fetch caches cf.json at custom location", async (t
258258 t . false ( existsSync ( defaultCfPath ) ) ;
259259 const cf = await fs . readFile ( customCfPath , "utf8" ) ;
260260 t . is ( cf , '{"colo": "LHR"}' ) ;
261- t . is ( log . logsAtLevel ( LogLevel . INFO ) [ 0 ] , "Updated Request cf object cache!" ) ;
261+ t . is ( log . logsAtLevel ( LogLevel . INFO ) [ 0 ] , "Updated ` Request.cf` object cache!" ) ;
262262} ) ;
263263test ( "HTTPPlugin: setupCf: cf fetch reuses cf.json" , async ( t ) => {
264264 const tmp = await useTmp ( t ) ;
@@ -300,7 +300,7 @@ test("HTTPPlugin: setupCf: cf fetch refetches cf.json if stale", async (t) => {
300300 } ) ;
301301 const cf = await fs . readFile ( cfPath , "utf8" ) ;
302302 t . is ( cf , '{"colo": "MAN"}' ) ;
303- t . is ( log . logsAtLevel ( LogLevel . INFO ) [ 0 ] , "Updated Request cf object cache!" ) ;
303+ t . is ( log . logsAtLevel ( LogLevel . INFO ) [ 0 ] , "Updated ` Request.cf` object cache!" ) ;
304304} ) ;
305305
306306test ( "HTTPPlugin: setupHttps: httpsOptions undefined if https disabled" , async ( t ) => {
0 commit comments