Skip to content

Commit

Permalink
Fix tests for version v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturMoczulski committed Aug 14, 2018
1 parent 0a45fb8 commit 1deec89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Payload/Notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class Notifier implements \Serializable
{
const NAME = "rollbar-php";
const VERSION = "1.6.1";
const VERSION = "1.6.2";

public static function defaultNotifier()
{
Expand Down
2 changes: 1 addition & 1 deletion tests/NotifierTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ public function testEncode()
{
$notifier = Notifier::defaultNotifier();
$encoded = json_encode($notifier->serialize());
$this->assertEquals('{"name":"rollbar-php","version":"1.5.3"}', $encoded);
$this->assertEquals('{"name":"rollbar-php","version":"1.6.2"}', $encoded);
}
}

0 comments on commit 1deec89

Please sign in to comment.