From 46bf3c94f953c364940d3fd5df7e6e99fd3dd4d6 Mon Sep 17 00:00:00 2001 From: Richard Herbert <1644678+richardherbert@users.noreply.github.com> Date: Tue, 31 Dec 2024 09:53:30 +0000 Subject: [PATCH] Update Application.cfc Added this.suppressRemoteComponentContent = false; --- tests/Application.cfc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Application.cfc b/tests/Application.cfc index 35ff6b0..0fb575a 100644 --- a/tests/Application.cfc +++ b/tests/Application.cfc @@ -16,6 +16,8 @@ component{ this.mappings[ "/testbox" ] = rootPath; // Map resources this.mappings[ "/coldbox" ] = this.mappings[ "/tests" ] & "resources/coldbox"; + // Turn on/off remote cfc content whitespace + this.suppressRemoteComponentContent = false; // any orm definitions go here.