diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-13 11:08:58 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-13 11:08:58 +0200 |
commit | e90a3b5ba775a6f20cbb56060136212ada69564f (patch) | |
tree | 14b6cf2be1c0bacff77dbc00551f925ad734dcfa /tests | |
parent | 4856d95135409aae924ece49c76e8c08a29ac221 (diff) | |
parent | ee5f5eebe58e45724d5e29c660c164c5325e52a3 (diff) | |
download | nextcloud-server-e90a3b5ba775a6f20cbb56060136212ada69564f.tar.gz nextcloud-server-e90a3b5ba775a6f20cbb56060136212ada69564f.zip |
Merge pull request #23954 from stweil/master
misc: Fix some typos
Diffstat (limited to 'tests')
-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, |