diff --git a/tests/specs/coverage/CoverageReporterTest.cfc b/tests/specs/coverage/CoverageReporterTest.cfc index cc07980..3f1da73 100644 --- a/tests/specs/coverage/CoverageReporterTest.cfc +++ b/tests/specs/coverage/CoverageReporterTest.cfc @@ -4,18 +4,6 @@ component extends="testbox.system.BaseSpec" { function run(){ - // TODO: This is a temporary fix for a bug in the BoxLang query engine - // https://ortussolutions.atlassian.net/browse/BL-535 - if ( isBoxLang() ) { - describe( - title: "Skipped in BoxLang due to query issue", - body : () => { - }, - skip: true - ); - return; - } - describe( "CoverageReporter", function(){ it( "can init", function(){ expect( new system.coverage.CoverageReporter() ).toBeComponent();