@@ -33,11 +33,11 @@ public function test_can_store_for_fikers(): void
3333
3434 $ this ->basicTable ->setFilter ('breed ' , ['1 ' ]);
3535 $ this ->assertSame (['1 ' ], $ this ->basicTable ->getAppliedFilterWithValue ('breed ' ));
36- $ this ->assertSame (['breed ' => ['1 ' ]], $ this ->basicTable ->appliedFilters );
36+ $ this ->assertSame (['breed ' => ['1 ' ]], $ this ->basicTable ->filterComponents );
3737 $ this ->assertSame (['breed ' => ['1 ' ]], $ this ->basicTable ->getStoredFilterValues ());
3838
3939 $ this ->basicTable ->setFilter ('breed ' , ['2 ' ]);
40- $ this ->assertSame (['breed ' => ['2 ' ]], $ this ->basicTable ->appliedFilters );
40+ $ this ->assertSame (['breed ' => ['2 ' ]], $ this ->basicTable ->filterComponents );
4141 $ this ->assertSame (['2 ' ], $ this ->basicTable ->getAppliedFilterWithValue ('breed ' ));
4242 $ this ->assertSame (['breed ' => ['2 ' ]], $ this ->basicTable ->getStoredFilterValues ());
4343
@@ -53,17 +53,16 @@ public function test_can_store_for_fikers(): void
5353 $ this ->assertSame (['breed ' => ['3 ' ]], $ this ->basicTable ->getStoredFilterValues ());
5454 $ this ->assertSame (['3 ' ], $ this ->basicTable ->getAppliedFilterWithValue ('breed ' ));
5555
56- $ this ->basicTable ->appliedFilters = $ this -> basicTable -> filterComponents = [ 'breed ' => ['4 ' ]] ;
56+ $ this ->basicTable ->setFilter ( 'breed ' , ['4 ' ]) ;
5757 $ this ->basicTable ->storeFilterValues ();
5858 $ this ->assertSame (['4 ' ], $ this ->basicTable ->getAppliedFilterWithValue ('breed ' ));
5959
60- $ this ->basicTable ->appliedFilters = $ this -> basicTable -> filterComponents = [];
60+ $ this ->basicTable ->filterComponents = [];
6161 $ this ->assertNull ($ this ->basicTable ->getAppliedFilterWithValue ('breed ' ));
62- $ this ->assertSame ([], $ this ->basicTable ->appliedFilters );
6362 $ this ->assertSame ([], $ this ->basicTable ->filterComponents );
6463
6564 $ this ->basicTable ->restoreFilterValues ();
66- $ this ->assertSame (['breed ' => ['4 ' ]], $ this ->basicTable ->appliedFilters );
65+ $ this ->assertSame (['breed ' => ['4 ' ]], $ this ->basicTable ->filterComponents );
6766 $ this ->assertSame (['4 ' ], $ this ->basicTable ->getAppliedFilterWithValue ('breed ' ));
6867 $ this ->assertSame (['breed ' => ['4 ' ]], $ this ->basicTable ->getStoredFilterValues ());
6968
0 commit comments