diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-02-17 21:34:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-17 21:34:20 +0100 |
commit | ac63c207a962466ccabf140a4e3f5390b34a8beb (patch) | |
tree | 2ddb01bfd87308c13733b53ae949c58556811e88 /tests | |
parent | d953db8683b10bdaf55ab8f3bb8b6b1c42870270 (diff) | |
parent | 9b68f80c4bf73ddc845fa64dba90cd858d663af6 (diff) | |
download | nextcloud-server-ac63c207a962466ccabf140a4e3f5390b34a8beb.tar.gz nextcloud-server-ac63c207a962466ccabf140a4e3f5390b34a8beb.zip |
Merge pull request #8411 from nextcloud/add-strict-types-to-oc_app
Add strict types to OC_App
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AppTest.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/lib/AppTest.php b/tests/lib/AppTest.php index d10ad387599..04729303847 100644 --- a/tests/lib/AppTest.php +++ b/tests/lib/AppTest.php @@ -310,19 +310,6 @@ class AppTest extends \Test\TestCase { } /** - * Test that the isAppCompatible method also supports passing an array - * as $ocVersion - */ - public function testIsAppCompatibleWithArray() { - $ocVersion = array(6); - $appInfo = array( - 'requiremin' => '6', - 'requiremax' => '6', - ); - $this->assertTrue(\OC_App::isAppCompatible($ocVersion, $appInfo)); - } - - /** * Tests that the app order is correct */ public function testGetEnabledAppsIsSorted() { |