mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#2366 - Rename methods with deprecation for QueryPlanCapture and Pairs
This commit is contained in:
+2
-2
@@ -77,7 +77,7 @@ public class InPairsExpressionTest extends BaseExpressionTest {
|
||||
public void diffSeparator_diff() throws Exception {
|
||||
|
||||
InPairsExpression e0 = new InPairsExpression(pairs(), false);
|
||||
InPairsExpression e1 = new InPairsExpression(pairs().setConcatSeparator(":"), false);
|
||||
InPairsExpression e1 = new InPairsExpression(pairs().concatSeparator(":"), false);
|
||||
different(e0, e1);
|
||||
}
|
||||
|
||||
@@ -85,7 +85,7 @@ public class InPairsExpressionTest extends BaseExpressionTest {
|
||||
public void diffSuffix_diff() throws Exception {
|
||||
|
||||
InPairsExpression e0 = new InPairsExpression(pairs(), false);
|
||||
InPairsExpression e1 = new InPairsExpression(pairs().setConcatSuffix(":"), false);
|
||||
InPairsExpression e1 = new InPairsExpression(pairs().concatSuffix(":"), false);
|
||||
different(e0, e1);
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -386,8 +386,8 @@ public class TestCacheViaComplexNaturalKey3 extends BaseTestCase {
|
||||
loadSomeIntoCache();
|
||||
|
||||
Pairs pairs = new Pairs("sku", "code")
|
||||
.setConcatSeparator(":")
|
||||
.setConcatSuffix("-foo")
|
||||
.concatSeparator(":")
|
||||
.concatSuffix("-foo")
|
||||
.add("2", 1000)
|
||||
.add("2", 1001)
|
||||
.add("3", 1000);
|
||||
|
||||
Reference in New Issue
Block a user