diff --git a/tests/PhpZip/ZipAlignTest.php b/tests/PhpZip/ZipAlignTest.php index 36c273f..161cc33 100644 --- a/tests/PhpZip/ZipAlignTest.php +++ b/tests/PhpZip/ZipAlignTest.php @@ -15,7 +15,7 @@ class ZipAlignTest extends ZipTestCase */ public function testApkAlignedAndSetZipAlignAndReSave() { - $filename = __DIR__ . '/resources/test.apk'; + $filename = __DIR__ . '/resources/apk.zip'; $this->assertCorrectZipArchive($filename); $result = $this->assertVerifyZipAlign($filename); diff --git a/tests/PhpZip/ZipEventTest.php b/tests/PhpZip/ZipEventTest.php index 818f920..02e2c7b 100644 --- a/tests/PhpZip/ZipEventTest.php +++ b/tests/PhpZip/ZipEventTest.php @@ -22,7 +22,7 @@ class ZipEventTest extends ZipTestCase public function testBeforeSave() { $zipFile = new ZipFileExtended(); - $zipFile->openFile(__DIR__ . '/resources/test.apk'); + $zipFile->openFile(__DIR__ . '/resources/apk.zip'); $this->assertTrue(isset($zipFile['META-INF/MANIFEST.MF'])); $this->assertTrue(isset($zipFile['META-INF/CERT.SF'])); $this->assertTrue(isset($zipFile['META-INF/CERT.RSA'])); diff --git a/tests/PhpZip/resources/apk.zip b/tests/PhpZip/resources/apk.zip new file mode 100644 index 0000000..3c94462 Binary files /dev/null and b/tests/PhpZip/resources/apk.zip differ diff --git a/tests/PhpZip/resources/test.apk b/tests/PhpZip/resources/test.apk deleted file mode 100644 index 00411d3..0000000 Binary files a/tests/PhpZip/resources/test.apk and /dev/null differ