From 4f4fc6350b5ec73d761b4f8fd07d3cd01b514133 Mon Sep 17 00:00:00 2001 From: "Bernd.Rederlechner@t-systems.com" Date: Tue, 11 May 2021 10:15:37 +0000 Subject: [PATCH] Fix wrong class reference name to make test run Signed-off-by: Bernd.Rederlechner@t-systems.com --- tests/lib/Files/ObjectStore/S3Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/Files/ObjectStore/S3Test.php b/tests/lib/Files/ObjectStore/S3Test.php index 9781421238..07e73e2eea 100644 --- a/tests/lib/Files/ObjectStore/S3Test.php +++ b/tests/lib/Files/ObjectStore/S3Test.php @@ -62,7 +62,7 @@ class NonSeekableStream extends Wrapper { class S3Test extends ObjectStoreTest { protected function getInstance() { $config = \OC::$server->getConfig()->getSystemValue('objectstore'); - if (!is_array($config) || $config['class'] !== 'OC\\Files\\ObjectStore\\S3') { + if (!is_array($config) || $config['class'] !== '\\OC\\Files\\ObjectStore\\S3') { $this->markTestSkipped('objectstore not configured for s3'); }