File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -482,9 +482,15 @@ component {
482
482
}
483
483
484
484
/**
485
- * Get the Hibernate version string from Hibernate or Hibernate bundle version
485
+ * Get the Hibernate version string from the running engine
486
486
*/
487
487
public string function getHibernateVersion (){
488
+ // BoxLang Detection
489
+ if ( server .keyExists ( " boxlang" ) ) {
490
+ return ORMGetHibernateVersion ();
491
+ }
492
+
493
+ // Adobe + Lucee Convuluted ways
488
494
var version = createObject ( " java" , " org.hibernate.Version" );
489
495
490
496
if ( version .getVersionString () ! = " [WORKING]" ) {
Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ component extends="tests.resources.BaseIntegrationTest" {
15
15
}
16
16
17
17
function run ( testResults , testBox ){
18
- if ( isBoxLang () ) {
19
- return ;
20
- }
21
18
// all your suites go here.
22
19
describe ( " HTML Helper" , function (){
23
20
beforeEach ( function ( currentSpec ){
Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ component extends="tests.resources.BaseIntegrationTest" {
15
15
}
16
16
17
17
function run ( testResults , testBox ){
18
- if ( isBoxLang () ) {
19
- return ;
20
- }
21
18
// all your suites go here.
22
19
describe ( " Object Populator" , function (){
23
20
beforeEach ( function ( currentSpec ){
You can’t perform that action at this time.
0 commit comments