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

Commit

Permalink
fixed the method name
Browse files Browse the repository at this point in the history
  • Loading branch information
dkemper authored and Ocramius committed Nov 27, 2014
1 parent e1dd308 commit 8d3d91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Writer/Renderer/Feed/AtomTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function testDateModifiedHasTheCorrectFormat()
$date = new \DateTime();
$date->setTimestamp(1071336602);
$date->setTimezone(new \DateTimeZone('GMT'));
$this->validWriter->setDate($date);
$this->validWriter->setDateModified($date);
$atomFeed = new Renderer\Feed\Atom($this->validWriter);
$atomFeed->render();
$this->assertEquals('2003-12-13T17:30:02+00:00', $atomFeed->getDomDocument()->getElementsByTagName('updated')->item(0)->textContent);
Expand Down

0 comments on commit 8d3d91a

Please sign in to comment.