mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-07 12:18:46 +00:00
fix build failure
This commit is contained in:
parent
3e1ac66abf
commit
d4290837f3
@ -121,12 +121,12 @@ class RegionLoaderTest extends TestCase{
|
|||||||
*/
|
*/
|
||||||
public function testRegionHeaderCachedFilesizeRegression() : void{
|
public function testRegionHeaderCachedFilesizeRegression() : void{
|
||||||
$this->region->close();
|
$this->region->close();
|
||||||
$region = new RegionLoader($this->regionPath, 0, 0); //now we have a region, so the header will be verified, triggering two filesize() calls
|
$region = new RegionLoader($this->regionPath); //now we have a region, so the header will be verified, triggering two filesize() calls
|
||||||
$region->open();
|
$region->open();
|
||||||
$data = str_repeat("hello", 2000);
|
$data = str_repeat("hello", 2000);
|
||||||
$region->writeChunk(0, 0, $data); //add some data to the end of the file, to make the cached filesize invalid
|
$region->writeChunk(0, 0, $data); //add some data to the end of the file, to make the cached filesize invalid
|
||||||
$region->close();
|
$region->close();
|
||||||
$region = new RegionLoader($this->regionPath, 0, 0);
|
$region = new RegionLoader($this->regionPath);
|
||||||
$region->open();
|
$region->open();
|
||||||
self::assertSame($data, $region->readChunk(0, 0));
|
self::assertSame($data, $region->readChunk(0, 0));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user