HHH-12905 Fix error message tested in MySQL and PostgreSQL tests
This commit is contained in:
parent
99b93ae949
commit
fdfef4f5ce
|
@ -411,7 +411,7 @@ public class MySQLStoredProcedureTest extends BaseEntityManagerFunctionalTestCas
|
|||
fail("Should have thrown exception");
|
||||
}
|
||||
catch (IllegalArgumentException e) {
|
||||
assertEquals( "The parameter on the [1] position was null. You need to call ParameterRegistration#enablePassingNulls in order to pass null parameters.", e.getMessage() );
|
||||
assertEquals( "The parameter on the [1] position was null. You need to call ParameterRegistration#enablePassingNulls(true) in order to pass null parameters.", e.getMessage() );
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -405,7 +405,7 @@ public class PostgreSQLStoredProcedureTest extends BaseEntityManagerFunctionalTe
|
|||
fail("Should have thrown exception");
|
||||
}
|
||||
catch (IllegalArgumentException e) {
|
||||
assertEquals( "The parameter with the [param] position was null. You need to call ParameterRegistration#enablePassingNulls in order to pass null parameters.", e.getMessage() );
|
||||
assertEquals( "The parameter with the [param] name was null. You need to call ParameterRegistration#enablePassingNulls(true) in order to pass null parameters.", e.getMessage() );
|
||||
}
|
||||
} );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue