Skip to content

Commit 196f5f4

Browse files
committed
Fixed broken test
1 parent 84b74a3 commit 196f5f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/uid2/operator/UIDOperatorVerticleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5293,7 +5293,7 @@ void identityBucketsAlwaysReturnMilliseconds(Vertx vertx, VertxTestContext testC
52935293

52945294
// SaltEntry with a lastUpdated that has 0 milliseconds
52955295
long lastUpdatedMillis = Instant.parse("2024-01-01T00:00:00Z").toEpochMilli();
5296-
SaltEntry bucketEntry = new SaltEntry(456, "hashed456", lastUpdatedMillis, "salt456", null, null, null, null);
5296+
SaltEntry bucketEntry = new SaltEntry(456, "hashed456", lastUpdatedMillis, "salt456", 1000L, null, null, null);
52975297
when(saltProviderSnapshot.getModifiedSince(any())).thenReturn(List.of(bucketEntry));
52985298

52995299
String sinceTimestamp = "2023-12-31T00:00:00"; // earlier timestamp

0 commit comments

Comments
 (0)