We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ef58e commit bb79333Copy full SHA for bb79333
src/test/java/org/databunker/DatabunkerproApiPciTest.java
@@ -154,9 +154,9 @@ public void testBulkCreditCardTokenization() throws IOException {
154
};
155
156
@SuppressWarnings("unchecked")
157
- Map<String, String>[] records = new Map[creditCards.length];
+ Map<String, Object>[] records = new Map[creditCards.length];
158
for (int i = 0; i < creditCards.length; i++) {
159
- Map<String, String> record = new HashMap<>();
+ Map<String, Object> record = new HashMap<>();
160
record.put("tokentype", "creditcard");
161
record.put("record", creditCards[i]);
162
records[i] = record;
0 commit comments