File tree Expand file tree Collapse file tree
tests/AssetManagerTest/Service Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -212,10 +212,6 @@ public function testGetProviderWithMultipleDefinition()
212212 'dir ' => 'somewhere ' ,
213213 )
214214 ),
215-
216- 'my_bc_check.tmp ' => array (
217- 'cache ' => 'Filesystem ' ,
218- ),
219215 );
220216
221217 $ serviceManager ->setFactory (
@@ -241,9 +237,6 @@ function () {
241237
242238 $ provider = $ reflectionMethod ->invoke ($ assetManager , 'my_provided_class.tmp ' );
243239 $ this ->assertTrue ($ provider instanceof FilePathCache);
244-
245- $ provider = $ reflectionMethod ->invoke ($ assetManager , 'my_bc_check.tmp ' );
246- $ this ->assertTrue ($ provider instanceof ApcCache);
247240 }
248241
249242 /**
Original file line number Diff line number Diff line change @@ -116,7 +116,9 @@ public function testFiltersAreInstantiatedOnce()
116116 if ($ filterInstance === null ) {
117117 $ filterInstance = $ filter ;
118118 }
119- return $ filter === $ filterInstance ;
119+ $ this ->assertSame ($ filter , $ filterInstance );
120+
121+ return $ filter === $ filterInstance ;
120122 }));
121123
122124 $ assetFilterManager ->setFilters ('test/path.test ' , $ asset );
You can’t perform that action at this time.
0 commit comments