`propertiesAreEqualToIgnoring` doesn't support nul...
# strikt
e
propertiesAreEqualToIgnoring
doesn't support nullable attributes as currently written this should work, though
Copy code
fun <T : Any> Assertion.Builder<T>.propertiesAreEqualToIgnoring(
    other: T,
    vararg ignoredProperties: KProperty1<T, Any?>,
): Assertion.Builder<T> = compareFieldByField(
    other,
    ignoredProperties.map(KProperty1<T, Any?>::name)
)
Just changed
KProperty1<T, Any>
->
KProperty1<T, Any?>
or maybe
KProperty1<T, *>
?
r
oh that’s a silly mistake on my part. I’ll get that fixed. Thanks
e
any chance for a 0.34.2 soon-ish?