Fix test
This commit is contained in:
parent
54401083ce
commit
30401bfed8
|
@ -117,7 +117,7 @@ class ProcedureCallTest extends AgentTestRunner {
|
||||||
|
|
||||||
ProcedureCall call = session.createStoredProcedureCall("TEST_PROC")
|
ProcedureCall call = session.createStoredProcedureCall("TEST_PROC")
|
||||||
call.registerParameter("nonexistent", Long, ParameterMode.IN)
|
call.registerParameter("nonexistent", Long, ParameterMode.IN)
|
||||||
call.getParameterRegistration("nonexistent").bindValue(420)
|
call.getParameterRegistration("nonexistent").bindValue(420L)
|
||||||
try {
|
try {
|
||||||
call.getOutputs()
|
call.getOutputs()
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
Loading…
Reference in New Issue