Skip to content

Commit

Permalink
Fixed typo in testBug73775.
Browse files Browse the repository at this point in the history
  • Loading branch information
soklakov committed Jun 26, 2017
1 parent 6b83353 commit 86e24f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/testsuite/regression/MetaDataRegressionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -4280,7 +4280,7 @@ public void testBug73775() throws Exception {
}

for (String ptn : new String[] { "param2", "_____2", "%2", "p_r_m%2" }) {
this.rs = dbmd.getProcedureColumns(null, "", "testBug73775%", "param2");
this.rs = dbmd.getProcedureColumns(null, "", "testBug73775%", ptn);
assertTrue(this.rs.next());
assertEquals(testCase, "testBug73775f", this.rs.getString(3));
assertEquals(testCase, "", this.rs.getString(4)); // Function return param is always returned.
Expand Down
4 changes: 2 additions & 2 deletions src/testsuite/regression/jdbc4/MetaDataRegressionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ public void testBug73775() throws Exception {
}

for (String ptn : new String[] { "param2", "_____2", "%2", "p_r_m%2" }) {
this.rs = dbmd.getProcedureColumns(null, "", "testBug73775%", "param2");
this.rs = dbmd.getProcedureColumns(null, "", "testBug73775%", ptn);
if (inclFuncs) {
assertTrue(this.rs.next());
assertEquals(testCase, "testBug73775f", this.rs.getString(3));
Expand Down Expand Up @@ -977,7 +977,7 @@ public void testBug73775() throws Exception {
}

for (String ptn : new String[] { "param2", "_____2", "%2", "p_r_m%2" }) {
this.rs = dbmd.getFunctionColumns(null, "", "testBug73775%", "param2");
this.rs = dbmd.getFunctionColumns(null, "", "testBug73775%", ptn);
assertTrue(this.rs.next());
assertEquals(testCase, "testBug73775f", this.rs.getString(3));
assertEquals(testCase, "", this.rs.getString(4)); // Function return param is always returned.
Expand Down

0 comments on commit 86e24f4

Please sign in to comment.