diff options
author | Björn Schießle <bjoern@schiessle.org> | 2016-01-05 19:01:03 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-02-09 23:43:26 +0100 |
commit | 9bb97c714bb2158fd019ba9efc24a8bc8595b499 (patch) | |
tree | 0b448eee0d30aa194cbc887c08f7c44728a9e109 /tests | |
parent | b9ff16498befe211205ea3c20c2eb341f97919fa (diff) | |
download | nextcloud-server-9bb97c714bb2158fd019ba9efc24a8bc8595b499.tar.gz nextcloud-server-9bb97c714bb2158fd019ba9efc24a8bc8595b499.zip |
fixing unit tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/files/stream/encryption.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/files/stream/encryption.php b/tests/lib/files/stream/encryption.php index f9d8f076b63..f67dd09bc4d 100644 --- a/tests/lib/files/stream/encryption.php +++ b/tests/lib/files/stream/encryption.php @@ -117,6 +117,7 @@ class Encryption extends \Test\TestCase { $header->setAccessible(true); $header->setValue($streamWrapper, array()); $header->setAccessible(false); + $this->invokePrivate($streamWrapper, 'signed', [true]); // call stream_open, that's the method we want to test $dummyVar = 'foo'; |