Two specific tests from the same bundle fail when all the bundles are run together. They pass when the single bundle is run seperately.

Tests pass when its bundle is run seperately.

All these tests are basic sql select queries. I don’t know how to go about debugging this. The debug stream shows a successful response with 0 results.
Could it be a lock problem?
`
/**
- My BDD Test
*/
component extends=“coldbox.system.testing.BaseTestCase” {
/*********************************** LIFE CYCLE Methods ***********************************/
// executes before all suites+specs in the run() method
function beforeAll(){
// do your own stuff here
// super.setup();
super.beforeAll();
}
// executes after all suites+specs in the run() method
function afterAll(){
super.beforeAll();
// do your own stuff here
}
/*********************************** BDD SUITES ***********************************/
function run(){
describe( title=“Project Search, searchHandler”, body=function(){
describe( “Search or get lists of projects”, function(){
it( “should list atleast 1 project by geolocation(santa ana office)”, function(){
url.lat = 33.6948545;
url.lng = -117.8604357;
var event = execute( event=“project:searchHandler.searchByLatLng”);
// debug( getRequestContext().getRenderData() );
expect( ArrayLen(getRequestContext().getRenderData().DATA.data.PROJECTS) ).toBeGTE(1);
});
it( “should find projects whose project name starts with Riverside”, function(){
url.projecttname = “Riverside”;
url.projectnamelike = 1;
var event = execute( event=“project:searchHandler.searchProjects”);
debug( getRequestContext().getRenderData() );
expect( ArrayLen(getRequestContext().getRenderData().DATA.data) ).toBeGTE(1);
});
it( “should find projects whose project name ends with Riverside with full details”, function(){
url.projecttname = “Riverside”;
url.projectnamelike = 3;
var event = execute( event=“project:searchHandler.searchProjectsFullDetails”);
debug( getRequestContext().getRenderData() );
expect( ArrayLen(getRequestContext().getRenderData().DATA.data) ).toBeGTE(1);
});
});
});
}
}
`
searchHandler.cfc
`
/**