@@ -267,7 +267,7 @@ void testInCaseInsensitiveEmptyList() {
267267 SelectModel selectModel = select (column1 , column3 )
268268 .from (table , "a" )
269269 .where (column3 , isInCaseInsensitive (Collections .emptyList ())
270- .withListEmptyCallback (Callback .runtimeExceptionThrowingCallback ("Fred" )))
270+ .withListEmptyCallback (Callback .exceptionThrowingCallback ("Fred" )))
271271 .build ();
272272
273273 assertThatExceptionOfType (RuntimeException .class ).describedAs ("Fred" ).isThrownBy (() ->
@@ -280,7 +280,7 @@ void testInCaseInsensitiveWhenPresentEmptyList() {
280280 SelectModel selectModel = select (column1 , column3 )
281281 .from (table , "a" )
282282 .where (column3 , isInCaseInsensitiveWhenPresent (Collections .emptyList ())
283- .withListEmptyCallback (Callback .runtimeExceptionThrowingCallback ("Fred" )))
283+ .withListEmptyCallback (Callback .exceptionThrowingCallback ("Fred" )))
284284 .build ();
285285
286286 assertThatExceptionOfType (RuntimeException .class ).describedAs ("Fred" ).isThrownBy (() ->
@@ -293,7 +293,7 @@ void testNotInCaseInsensitiveEmptyList() {
293293 SelectModel selectModel = select (column1 , column3 )
294294 .from (table , "a" )
295295 .where (column3 , isNotInCaseInsensitive (Collections .emptyList ())
296- .withListEmptyCallback (Callback .runtimeExceptionThrowingCallback ("Fred" )))
296+ .withListEmptyCallback (Callback .exceptionThrowingCallback ("Fred" )))
297297 .build ();
298298
299299 assertThatExceptionOfType (RuntimeException .class ).describedAs ("Fred" ).isThrownBy (() ->
@@ -306,7 +306,7 @@ void testNotInCaseInsensitiveWhenPresentEmptyList() {
306306 SelectModel selectModel = select (column1 , column3 )
307307 .from (table , "a" )
308308 .where (column3 , isNotInCaseInsensitiveWhenPresent (Collections .emptyList ())
309- .withListEmptyCallback (Callback .runtimeExceptionThrowingCallback ("Fred" )))
309+ .withListEmptyCallback (Callback .exceptionThrowingCallback ("Fred" )))
310310 .build ();
311311
312312 assertThatExceptionOfType (RuntimeException .class ).describedAs ("Fred" ).isThrownBy (() ->
0 commit comments