Skip to content

Commit

Permalink
Merge pull request #38414 from aduffeck/add-s3ng
Browse files Browse the repository at this point in the history
[tests-only] Add s3ng storage driver to the list of supported drivers
  • Loading branch information
phil-davis authored Feb 16, 2021
2 parents ec42804 + f2d1eae commit f6db407
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestHelpers/OcisHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ public static function getStorageDriver() {
if ($storageDriver === false) {
return "OWNCLOUD";
}
if ($storageDriver !== "OCIS" && $storageDriver !== "EOS" && $storageDriver !== "OWNCLOUD") {
if ($storageDriver !== "OCIS" && $storageDriver !== "EOS" && $storageDriver !== "OWNCLOUD" && $storageDriver !== "S3NG") {
throw new \Exception(
"Invalid storage driver. " .
"STORAGE_DRIVER must be OCIS|EOS|OWNCLOUD"
"STORAGE_DRIVER must be OCIS|EOS|OWNCLOUD|S3NG"
);
}
return $storageDriver;
Expand Down

0 comments on commit f6db407

Please sign in to comment.