Skip to content

Commit

Permalink
Renaming the param search test.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiss034 committed Dec 5, 2023
1 parent 88a003e commit 0407317
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions h2/src/test/org/h2/test/TestAll.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import org.h2.test.db.TestCompatibility;
import org.h2.test.db.TestCompatibilityOracle;
import org.h2.test.db.TestCompatibilitySQLServer;
import org.h2.test.db.TestCompoundIndexParamSearch;
import org.h2.test.db.TestCompoundIndexSearch;
import org.h2.test.db.TestCsv;
import org.h2.test.db.TestDateStorage;
Expand Down Expand Up @@ -63,7 +64,6 @@
import org.h2.test.db.TestOpenClose;
import org.h2.test.db.TestOptimizations;
import org.h2.test.db.TestOutOfMemory;
import org.h2.test.db.TestParamSearch;
import org.h2.test.db.TestPersistentCommonTableExpressions;
import org.h2.test.db.TestPowerOff;
import org.h2.test.db.TestQueryCache;
Expand Down Expand Up @@ -735,7 +735,7 @@ private void test() throws SQLException {
addTest(new TestIndex());
addTest(new TestIndexHints());
addTest(new TestCompoundIndexSearch());
addTest(new TestParamSearch());
addTest(new TestCompoundIndexParamSearch());
addTest(new TestLargeBlob());
addTest(new TestLinkedTable());
addTest(new TestListener());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* The test cases are the same as in {@link TestCompoundIndexSearch} but we are checking whether the hard coded, and
* the passed parameters works as the same.
*/
public class TestParamSearch extends TestDb {
public class TestCompoundIndexParamSearch extends TestDb {

private static final String DB_NAME = "paramSearch";

Expand Down

0 comments on commit 0407317

Please sign in to comment.