@@ -31,7 +31,6 @@ public static function tearDownAfterClass() {
3131
3232 public function testAssetsFind () {
3333 $ _assets = self ::$ Stack ->Assets ()->Query ()->toJSON ()->find ();
34-
3534 $ this ->assertArrayHasKey (0 , $ _assets );
3635 $ this ->assertTrue (checkAssetsSorting ($ _assets [0 ]));
3736 }
@@ -161,8 +160,9 @@ public function testAssetsFindDescending() {
161160 }
162161
163162 public function testAssetsFindLessThan () {
164- $ _set = 9684 ;
163+ $ _set = 7575 ;
165164 $ assets = self ::$ Stack ->Assets ()->Query ()->toJSON ()->lessThan ('file_size ' , $ _set )->find ();
165+ \Contentstack \Utility \debug ($ assets );
166166 $ this ->assertArrayHasKey (0 , $ assets );
167167 if (count ($ assets [0 ]) !== 0 ){
168168 foreach ($ assets [0 ] as $ key => $ val ) {
@@ -174,7 +174,7 @@ public function testAssetsFindLessThan() {
174174 }
175175
176176 public function testAssetsFindLessThanEqualTo () {
177- $ _set = 9684 ;
177+ $ _set = 12 ;
178178 $ assets = self ::$ Stack ->Assets ()->Query ()->toJSON ()->lessThanEqualTo ('file_size ' , $ _set )->find ();
179179 $ this ->assertArrayHasKey (0 , $ assets );
180180 if (count ($ assets [0 ]) !== 0 ) {
@@ -187,7 +187,7 @@ public function testAssetsFindLessThanEqualTo() {
187187 }
188188
189189 public function testAssetsFindGreaterThan () {
190- $ _set = 7575 ;
190+ $ _set = 12 ;
191191 $ assets = self ::$ Stack ->Assets ()->Query ()->toJSON ()->greaterThan ('file_size ' , $ _set )->find ();
192192 $ this ->assertArrayHasKey (0 , $ assets );
193193 if (count ($ assets [0 ]) !== 0 ) {
0 commit comments