Skip to content

Commit 5b2debf

Browse files
Revert unused methods
1 parent a967c1c commit 5b2debf

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/test/java/com/siftscience/TestUtils.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ static Address sampleAddress2() {
4545
.setZipCode("03257");
4646
}
4747

48+
static Address sampleAddress3() {
49+
return new Address()
50+
.setCity("Seattle")
51+
.setRegion("Washington")
52+
.setCountry("US")
53+
.setZipCode("98112");
54+
}
55+
4856
static PaymentMethod samplePaymentMethod1() {
4957
return new PaymentMethod()
5058
.setPaymentType("$credit_card")
@@ -60,6 +68,7 @@ static PaymentMethod samplePaymentMethod2() {
6068
.setCardLast4("4444");
6169
}
6270

71+
6372
static PaymentMethod samplePaymentMethodAch() {
6473
return new PaymentMethod()
6574
.setPaymentType("$ach_credit")
@@ -261,4 +270,11 @@ static Promotion samplePromotion3() {
261270
.setDiscount(sampleDiscount2());
262271
}
263272

273+
static List<String> sampleCategories() {
274+
List<String> categories = new ArrayList<>();
275+
categories.add("Housing");
276+
categories.add("Apartments");
277+
categories.add("2 Bedrooms");
278+
return categories;
279+
}
264280
}

0 commit comments

Comments
 (0)