``` val ignoredCodes = Exhaustive.ints(100..599)....
# kotest
t
Copy code
val ignoredCodes = Exhaustive.ints(100..599).toArb()
        .filter { it != 429 && it != 503 && it / 100 != 2 && it / 100 != 3 }