@@ -267,7 +267,7 @@ void testInCaseInsensitiveEmptyList() {
267
267
SelectModel selectModel = select (column1 , column3 )
268
268
.from (table , "a" )
269
269
.where (column3 , isInCaseInsensitive (Collections .emptyList ())
270
- .withListEmptyCallback (Callback .runtimeExceptionThrowingCallback ("Fred" )))
270
+ .withListEmptyCallback (Callback .exceptionThrowingCallback ("Fred" )))
271
271
.build ();
272
272
273
273
assertThatExceptionOfType (RuntimeException .class ).describedAs ("Fred" ).isThrownBy (() ->
@@ -280,7 +280,7 @@ void testInCaseInsensitiveWhenPresentEmptyList() {
280
280
SelectModel selectModel = select (column1 , column3 )
281
281
.from (table , "a" )
282
282
.where (column3 , isInCaseInsensitiveWhenPresent (Collections .emptyList ())
283
- .withListEmptyCallback (Callback .runtimeExceptionThrowingCallback ("Fred" )))
283
+ .withListEmptyCallback (Callback .exceptionThrowingCallback ("Fred" )))
284
284
.build ();
285
285
286
286
assertThatExceptionOfType (RuntimeException .class ).describedAs ("Fred" ).isThrownBy (() ->
@@ -293,7 +293,7 @@ void testNotInCaseInsensitiveEmptyList() {
293
293
SelectModel selectModel = select (column1 , column3 )
294
294
.from (table , "a" )
295
295
.where (column3 , isNotInCaseInsensitive (Collections .emptyList ())
296
- .withListEmptyCallback (Callback .runtimeExceptionThrowingCallback ("Fred" )))
296
+ .withListEmptyCallback (Callback .exceptionThrowingCallback ("Fred" )))
297
297
.build ();
298
298
299
299
assertThatExceptionOfType (RuntimeException .class ).describedAs ("Fred" ).isThrownBy (() ->
@@ -306,7 +306,7 @@ void testNotInCaseInsensitiveWhenPresentEmptyList() {
306
306
SelectModel selectModel = select (column1 , column3 )
307
307
.from (table , "a" )
308
308
.where (column3 , isNotInCaseInsensitiveWhenPresent (Collections .emptyList ())
309
- .withListEmptyCallback (Callback .runtimeExceptionThrowingCallback ("Fred" )))
309
+ .withListEmptyCallback (Callback .exceptionThrowingCallback ("Fred" )))
310
310
.build ();
311
311
312
312
assertThatExceptionOfType (RuntimeException .class ).describedAs ("Fred" ).isThrownBy (() ->
0 commit comments