From 51b3a4966274d1fb41aa27c8574f65d41b73a6b4 Mon Sep 17 00:00:00 2001 From: lmajano Date: Mon, 24 Jun 2024 18:13:38 +0000 Subject: [PATCH] Apply cfformat changes --- test-harness/tests/specs/BaseORMServiceTest.cfc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test-harness/tests/specs/BaseORMServiceTest.cfc b/test-harness/tests/specs/BaseORMServiceTest.cfc index c852da2..970fc34 100755 --- a/test-harness/tests/specs/BaseORMServiceTest.cfc +++ b/test-harness/tests/specs/BaseORMServiceTest.cfc @@ -100,7 +100,7 @@ function testClear(){ test = entityLoad( "User" ); stats = ormservice.getSessionStatistics(); - //debug( stats ); + // debug( stats ); ormservice.clear(); @@ -154,7 +154,7 @@ // Test with arguments. user = ormService.new( entityName = "User", properties = { firstName : "luis", lastName : "majano" } ); - //debug( user ); + // debug( user ); assertEquals( "luis", user.getFirstName() ); assertEquals( "majano", user.getLastName() ); } @@ -162,7 +162,7 @@ function testNewWithProperties(){ // Test Porperties user = ormService.new( "User", { firstName : "pio", lastName : "majano" } ); - //debug( user ); + // debug( user ); assertEquals( "pio", user.getFirstName() ); assertEquals( "majano", user.getLastName() ); } @@ -245,7 +245,7 @@ test.setDescription( "dirty dirty" ); var properties = ormService.getDirtyPropertyNames( test ); - //debug( properties ); + // debug( properties ); expect( properties ).toHaveLength( 2 ); } @@ -298,7 +298,7 @@ ormCloseSession(); } var test = entityLoad( "Category", { category : "unittest" } ); - //debug( test ); + // debug( test ); ormservice.delete( entity = test[ 1 ], transactional = false ); ormFlush(); ormservice.clear(); @@ -616,7 +616,7 @@ function testExecuteQuery(){ var test = ormservice.executeQuery( query = "from Category" ); - //debug( test ); + // debug( test ); assertTrue( isArray( test ) ); assertTrue( arrayLen( test ) );