From 33c11e10a52b5cbbc37051d949f96c19c0fafc39 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Tue, 11 Jun 2024 09:25:26 +0200 Subject: [PATCH] Update LDEV3739.cfc --- test/tickets/LDEV3739.cfc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/tickets/LDEV3739.cfc b/test/tickets/LDEV3739.cfc index bcc803bfae..febce0aa94 100644 --- a/test/tickets/LDEV3739.cfc +++ b/test/tickets/LDEV3739.cfc @@ -54,8 +54,8 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="error" { ); //fileWrite( uri & "/500_req.json", req.toJson() ); //fileWrite( uri & "/500.json", req.filecontent ); - systemOutput( result.filecontent, true ); - systemOutput( result, true ); + systemOutput( req.filecontent, true ); + systemOutput( req, true ); expect( isJson( req.filecontent ) ).toBeTrue(); var result = deserializeJSON( req.filecontent ); expect( req.status_code ).toBe( 500 ); @@ -79,8 +79,8 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="error" { //fileWrite( uri & "/404_req.json", req.toJson() ); //fileWrite( uri & "/404.json", req.filecontent ); expect( req.status_code ).toBe( 404 ); - systemOutput( result.filecontent, true ); - systemOutput( result, true ); + systemOutput( req.filecontent, true ); + systemOutput( req, true ); expect( isJson( req.filecontent ) ).toBeTrue(); var result = deserializeJSON( req.filecontent );