From 44c32a9d309c5a2573867e130e7e2da3b3a6e94e Mon Sep 17 00:00:00 2001 From: mateuswetah Date: Tue, 6 Aug 2024 10:37:26 -0300 Subject: [PATCH] Fixes filter type testing for #912. --- tests/test-filters.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-filters.php b/tests/test-filters.php index 65eb4a046..cce513813 100644 --- a/tests/test-filters.php +++ b/tests/test-filters.php @@ -97,7 +97,7 @@ class Filters extends TAINACAN_UnitTestCase { $Tainacan_Filters = \Tainacan\Repositories\Filters::get_instance(); $all_filter_types = $Tainacan_Filters->fetch_filter_types(); - $this->assertEquals( 13, count( $all_filter_types ) ); + $this->assertEquals( 14, count( $all_filter_types ) ); $float_filters = $Tainacan_Filters->fetch_supported_filter_types('float'); $this->assertTrue( count( $float_filters ) > 0 );