Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.uid2</groupId>
<artifactId>uid2-e2e</artifactId>
<version>4.2.0</version>
<version>4.2.1-alpha-91-SNAPSHOT</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/suite/operator/TestData.java
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ public static Set<Arguments> identityMapBatchBadEmailArgs() {
Set<Operator> operators = AppsMap.getApps(Operator.class);
Set<List<String>> inputs = Set.of(
List.of("bad email list policy=1", "{\"email\":[\"abc\",\"user2@example.com\"], \"policy\":1}"),
List.of("bad email hash list policy=1", "{\"email_hash\":[\"eVvLS/Vg+YZ6+z3i0NOpSXYyQAfEXqCZ7BTpAjFUBUc=\",\"abc\"], \"policy\":1}"),
List.of("bad email hash list policy=1", "{\"email_hash\":[\"rYsn2sTT1lRlZerX+4DXZMQ+DfcejOXoMVczcF2jCLM=\",\"abc\"], \"policy\":1}"),
List.of("bad email list optout_check=1", "{\"email\":[\"abc\",\"user2@example.com\"], \"optout_check\":1}"),
List.of("bad email hash list optout_check=1", "{\"email_hash\":[\"eVvLS/Vg+YZ6+z3i0NOpSXYyQAfEXqCZ7BTpAjFUBUc=\",\"abc\"], \"optout_check\":1}")
List.of("bad email hash list optout_check=1", "{\"email_hash\":[\"rYsn2sTT1lRlZerX+4DXZMQ+DfcejOXoMVczcF2jCLM=\",\"abc\"], \"optout_check\":1}")
);

Set<Arguments> args = new HashSet<>();
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/suite/validator/TestData.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ public static Set<Arguments> identityMapBatchBadEmailArgs() {
Prometheus prometheus = getPrometheus();
Set<List<String>> inputs = Set.of(
List.of("bad email list policy=1", "{\"email\":[\"abc\",\"user2@example.com\"], \"policy\":1}"),
List.of("bad email hash list policy=1", "{\"email_hash\":[\"eVvLS/Vg+YZ6+z3i0NOpSXYyQAfEXqCZ7BTpAjFUBUc=\",\"abc\"], \"policy\":1}"),
List.of("bad email hash list policy=1", "{\"email_hash\":[\"rYsn2sTT1lRlZerX+4DXZMQ+DfcejOXoMVczcF2jCLM=\",\"abc\"], \"policy\":1}"),
List.of("bad email list optout_check=1", "{\"email\":[\"abc\",\"user2@example.com\"], \"optout_check\":1}"),
List.of("bad email hash list optout_check=1", "{\"email_hash\":[\"eVvLS/Vg+YZ6+z3i0NOpSXYyQAfEXqCZ7BTpAjFUBUc=\",\"abc\"], \"optout_check\":1}")
List.of("bad email hash list optout_check=1", "{\"email_hash\":[\"rYsn2sTT1lRlZerX+4DXZMQ+DfcejOXoMVczcF2jCLM=\",\"abc\"], \"optout_check\":1}")
);

Set<Arguments> args = new HashSet<>();
Expand Down