Skip to content

Commit

Permalink
Relax thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrf committed Sep 2, 2024
1 parent 12e1c92 commit cbbe56c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class SkippedSegmentsTest extends MigratorSuiteWithDynamoDBLocal {

// Verify that some items have been copied to the target database …
val itemCount = targetAlternatorItemCount(tableName)
assert(itemCount > 90L && itemCount < 110L)
assert(itemCount > 75L && itemCount < 125L, s"Unexpected item count: ${itemCount}")
// … but not all of them, hence the validator fails
submitSparkJob(configPart2, "com.scylladb.migrator.Validator").exitValue().tap { statusCode =>
assertEquals(statusCode, 1)
Expand Down

0 comments on commit cbbe56c

Please sign in to comment.