Skip to content

Commit

Permalink
Fix small teardown bug which left a test file lying around
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-xo committed Feb 27, 2022
1 parent 3d243c8 commit dcc7739
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/RSS_File_ItemTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ public function test_getModificationTime_returns_most_recent_including_metadata_

public function tearDown(): void
{
file_exists($this->filename) && unlink($this->filename);
file_exists('example.jpg') && unlink('example.jpg');
file_exists('example.png') && unlink('example.png');
file_exists('example.txt') && unlink('example.txt');
Expand Down

0 comments on commit dcc7739

Please sign in to comment.