diff options
author | Remi Collet <fedora@famillecollet.com> | 2014-06-08 18:20:54 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2014-06-08 18:20:54 +0200 |
commit | ae15b96865400cb4864325572dac7c44189ba84d (patch) | |
tree | 41b767347b8894009212866c7c786ecf10c317f5 /155.patch | |
parent | 49b73d1ab4734464b3c8e973a4019cbbfcbb56f6 (diff) |
php-Raven: 0.9.0 (backport)
Diffstat (limited to '155.patch')
-rw-r--r-- | 155.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/155.patch b/155.patch new file mode 100644 index 0000000..31d1ca4 --- /dev/null +++ b/155.patch @@ -0,0 +1,26 @@ +From bffc917a976f4d2d945c6e631b38dc7e15557b63 Mon Sep 17 00:00:00 2001 +From: Shawn Iwinski <shawn.iwinski@gmail.com> +Date: Sat, 7 Jun 2014 11:48:37 -0400 +Subject: [PATCH] Fix Raven_Tests_ClientTest::testGetAuthHeader + +--- + test/Raven/Tests/ClientTest.php | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/test/Raven/Tests/ClientTest.php b/test/Raven/Tests/ClientTest.php +index dbbc8dd..0a300a4 100644 +--- a/test/Raven/Tests/ClientTest.php ++++ b/test/Raven/Tests/ClientTest.php +@@ -509,7 +509,8 @@ public function testGetAuthHeader() { + $timestamp = '1234341324.340000'; + + $expected = "Sentry sentry_timestamp={$timestamp}, sentry_client={$clientstring}, " . +- "sentry_version=4, sentry_key=publickey, sentry_secret=secretkey"; ++ "sentry_version=" . Dummy_Raven_Client::PROTOCOL . ", " . ++ "sentry_key=publickey, sentry_secret=secretkey"; + + $this->assertEquals($expected, $client->get_auth_header($timestamp, 'raven-php/test', 'publickey', 'secretkey')); + } +-- +1.9.3 + |