diff options
author | zotlabs <mike@macgirvin.com> | 2018-11-14 19:09:18 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-11-14 19:09:18 -0800 |
commit | 034f23b47ee38a237637a34ef02bc9aec4773f7f (patch) | |
tree | 3381c8e835b3594f9dbd71f7938b1a36312013a9 | |
parent | 9c25f300cf5032076c98bd597355c88e7ec08a34 (diff) | |
download | volse-hubzilla-034f23b47ee38a237637a34ef02bc9aec4773f7f.tar.gz volse-hubzilla-034f23b47ee38a237637a34ef02bc9aec4773f7f.tar.bz2 volse-hubzilla-034f23b47ee38a237637a34ef02bc9aec4773f7f.zip |
update httpsig unit test which is failing
-rw-r--r-- | tests/unit/Web/HttpSigTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/Web/HttpSigTest.php b/tests/unit/Web/HttpSigTest.php index 18f2ce92b..9909a9883 100644 --- a/tests/unit/Web/HttpSigTest.php +++ b/tests/unit/Web/HttpSigTest.php @@ -91,6 +91,7 @@ class PermissionDescriptionTest extends UnitTestCase { function testDecrypt_sigheader() { $header = 'Header: iv="value_iv" key="value_key" alg="value_alg" data="value_data"'; $result = [ + 'encrypted' => true, 'iv' => 'value_iv', 'key' => 'value_key', 'alg' => 'value_alg', @@ -109,6 +110,7 @@ class PermissionDescriptionTest extends UnitTestCase { $header = 'Header: iv="value_iv" key="value_key" alg="value_alg" data="value_data"'; $result = [ + 'encrypted' => true, 'iv' => 'value_iv', 'key' => 'value_key', 'alg' => 'value_alg', |