`unlink()` the generated image in `Tests_Image_Intermediate_Size::test_make_intermediate_size_successful()` at the end of the test to avoid cruff in `svn diff`s.

git-svn-id: https://develop.svn.wordpress.org/trunk@25507 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2013-09-19 18:05:11 +00:00
parent 93b93fde64
commit b20688456e
1 changed files with 2 additions and 0 deletions

View File

@ -42,5 +42,7 @@ class Tests_Image_Intermediate_Size extends WP_UnitTestCase {
$this->assertEquals( 'image/jpeg', $image['mime-type'] );
$this->assertFalse( isset( $image['path'] ) );
unlink( DIR_TESTDATA . '/images/a2-small-100x75.jpg' );
}
}