diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-03-12 10:46:28 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-03-12 10:47:12 -0700 |
commit | af49278c5fb98e3bea7844e8a0a4540a3b3e3270 (patch) | |
tree | b6a40993288e674a7e074a7cac600b8617ee9a12 /tests/lib | |
parent | 82a17248f0212e6039562bfc72ac6ffea6f307ea (diff) | |
download | nextcloud-server-af49278c5fb98e3bea7844e8a0a4540a3b3e3270.tar.gz nextcloud-server-af49278c5fb98e3bea7844e8a0a4540a3b3e3270.zip |
test: Update test for PublicSectorBundle
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/App/AppStore/Bundles/BundleFetcherTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php b/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php index c1fe5ef328a..86ddd12f1e7 100644 --- a/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php +++ b/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php @@ -26,6 +26,7 @@ use OC\App\AppStore\Bundles\EducationBundle; use OC\App\AppStore\Bundles\EnterpriseBundle; use OC\App\AppStore\Bundles\GroupwareBundle; use OC\App\AppStore\Bundles\HubBundle; +use OC\App\AppStore\Bundles\PublicSectorBundle; use OC\App\AppStore\Bundles\SocialSharingBundle; use OCP\IL10N; use Test\TestCase; @@ -53,6 +54,7 @@ class BundleFetcherTest extends TestCase { new GroupwareBundle($this->l10n), new SocialSharingBundle($this->l10n), new EducationBundle($this->l10n), + new PublicSectorBundle($this->l10n), ]; $this->assertEquals($expected, $this->bundleFetcher->getBundles()); } |