Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/ZF-9197' of https://github.com/thomasweidner/zf2
Browse files Browse the repository at this point in the history
…into hotfix/zf-9197

Conflicts:
	library/Zend/Filter/InputFilter.php
	tests/Zend/Filter/InputTest.php
  • Loading branch information
weierophinney committed Aug 25, 2011
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions test/MimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,28 @@
*/
class MimeTest extends \PHPUnit_Framework_TestCase
{
/**
* Stores the original set timezone
* @var string
*/
private $_originaltimezone;

/**
* Setup environment
*/
public function setUp()
{
$this->_originaltimezone = date_default_timezone_get();
}

/**
* Teardown environment
*/
public function tearDown()
{
date_default_timezone_set($this->_originaltimezone);
}

public function testBoundary()
{
// check boundary for uniqueness
Expand Down

0 comments on commit 212de55

Please sign in to comment.