diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-07-18 11:21:03 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-08-08 17:03:51 +0200 |
commit | 49334e4d9c278d33ce9fd4195b5a12af99821be2 (patch) | |
tree | 45ffe11ad48be373ad7a46f4214d285b18a7670e /tests | |
parent | 48d9c4d2b093e12ec3bf3cd29295da0f2277028f (diff) | |
download | nextcloud-server-49334e4d9c278d33ce9fd4195b5a12af99821be2.tar.gz nextcloud-server-49334e4d9c278d33ce9fd4195b5a12af99821be2.zip |
Fix many tests and warnings
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/App/DependencyAnalyzerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/App/DependencyAnalyzerTest.php b/tests/lib/App/DependencyAnalyzerTest.php index 1e37948d783..75cc991cf99 100644 --- a/tests/lib/App/DependencyAnalyzerTest.php +++ b/tests/lib/App/DependencyAnalyzerTest.php @@ -35,7 +35,7 @@ class DependencyAnalyzerTest extends TestCase { ->willReturn('5.4.3'); $this->platformMock->expects($this->any()) ->method('getIntSize') - ->willReturn('4'); + ->willReturn(4); $this->platformMock->expects($this->any()) ->method('getDatabase') ->willReturn('mysql'); |