diff options
author | Stefan Weil <sw@weilnetz.de> | 2016-04-12 18:36:39 +0200 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2016-04-12 18:36:39 +0200 |
commit | ee5f5eebe58e45724d5e29c660c164c5325e52a3 (patch) | |
tree | 0e3bb746b4457dee12a8cbf70c4ecc553072095a /tests/core/command | |
parent | e9a9af3493caa7e839e18cda0c8ea2d8dd7bfd22 (diff) | |
download | nextcloud-server-ee5f5eebe58e45724d5e29c660c164c5325e52a3.tar.gz nextcloud-server-ee5f5eebe58e45724d5e29c660c164c5325e52a3.zip |
misc: Fix some typos
Some of them were found by codespell.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'tests/core/command')
-rw-r--r-- | tests/core/command/encryption/changekeystorageroottest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/command/encryption/changekeystorageroottest.php b/tests/core/command/encryption/changekeystorageroottest.php index 6cb52cdea99..2a1f48983f1 100644 --- a/tests/core/command/encryption/changekeystorageroottest.php +++ b/tests/core/command/encryption/changekeystorageroottest.php @@ -74,9 +74,9 @@ class ChangeKeyStorageRootTest extends TestCase { $this->outputInterface = $this->getMock('Symfony\Component\Console\Output\OutputInterface'); $this->userInterface = $this->getMock('\OCP\UserInterface'); - $outputFormaterInterface = $this->getMock('Symfony\Component\Console\Formatter\OutputFormatterInterface'); + $outputFormatterInterface = $this->getMock('Symfony\Component\Console\Formatter\OutputFormatterInterface'); $this->outputInterface->expects($this->any())->method('getFormatter') - ->willReturn($outputFormaterInterface); + ->willReturn($outputFormatterInterface); $this->changeKeyStorageRoot = new ChangeKeyStorageRoot( $this->view, |