File tree 1 file changed +2
-2
lines changed
src/test/java/org/springframework/data/jpa/repository/query
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ public void shouldCreateStoredProcedureAttributesFromProcedureMethodWithExplictP
103
103
assertThat (attr .getOutputParameterName (), is (StoredProcedureAttributes .SYNTHETIC_OUTPUT_PARAMETER_NAME ));
104
104
}
105
105
106
- @ Test // DATAJPA-1297
106
+ @ Test // DATAJPA-1297
107
107
public void shouldCreateStoredProcedureAttributesFromProcedureMethodWithExplictProcedureNameAliasAndOutputParameterName () {
108
108
109
109
StoredProcedureAttributes attr = creator
@@ -179,7 +179,7 @@ static interface DummyRepository {
179
179
Integer explicitPlus1inoutViaProcedureNameAlias (Integer arg );
180
180
181
181
/**
182
- * Explicitly mapped to a procedure with name "plus1inout" in database via alias and explicityly named ouput parameter.
182
+ * Explicitly mapped to a procedure with name "plus1inout" in database via alias and explicitly named ouput parameter.
183
183
*/
184
184
@ Procedure (procedureName = "plus1inout" , outputParameterName = "res" ) // DATAJPA-1297
185
185
Integer explicitPlus1inoutViaProcedureNameAliasAndOutputParameterName (Integer arg );
You can’t perform that action at this time.
0 commit comments