@@ -387,7 +387,7 @@ func TestCheckFilter(t *testing.T) {
387387 expected := true
388388
389389 // Test the check filter function
390- result := utils .CheckFilter (filter , str , false )
390+ result := utils .CheckFilter (filter , str )
391391
392392 // Check if the result is equal to the expected
393393 if result != expected {
@@ -402,7 +402,7 @@ func TestCheckFilter(t *testing.T) {
402402 expected = true
403403
404404 // Test the check filter function
405- result = utils .CheckFilter (filter , str , true )
405+ result = utils .CheckFilter (filter , str )
406406
407407 // Check if the result is equal to the expected
408408 if result != expected {
@@ -417,7 +417,7 @@ func TestCheckFilter(t *testing.T) {
417417 expected = true
418418
419419 // Test the check filter function
420- result = utils .CheckFilter (filter , str , false )
420+ result = utils .CheckFilter (filter , str )
421421
422422 // Check if the result is equal to the expected
423423 if result != expected {
@@ -432,7 +432,7 @@ func TestCheckFilter(t *testing.T) {
432432 expected = false
433433
434434 // Test the check filter function
435- result = utils .CheckFilter (filter , str , true )
435+ result = utils .CheckFilter (filter , str )
436436
437437 // Check if the result is equal to the expected
438438 if result != expected {
@@ -447,7 +447,7 @@ func TestCheckFilter(t *testing.T) {
447447 expected = false
448448
449449 // Test the check filter function
450- result = utils .CheckFilter (filter , str , false )
450+ result = utils .CheckFilter (filter , str )
451451
452452 // Check if the result is equal to the expected
453453 if result != expected {
0 commit comments