diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-11 10:05:54 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-11 13:59:19 +0100 |
commit | 5f7502de6cbae156ae9bef5fb8db7390e9b5aa21 (patch) | |
tree | 08fcd66bb48531a61b4d50c44954b4240e04c872 /build | |
parent | 95a751865381be61943056b5fccdf7c222462227 (diff) | |
download | nextcloud-server-5f7502de6cbae156ae9bef5fb8db7390e9b5aa21.tar.gz nextcloud-server-5f7502de6cbae156ae9bef5fb8db7390e9b5aa21.zip |
Fix type in class name
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/bootstrap/Sharing.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/Sharing.php b/build/integration/features/bootstrap/Sharing.php index 13f95893934..dede98157d1 100644 --- a/build/integration/features/bootstrap/Sharing.php +++ b/build/integration/features/bootstrap/Sharing.php @@ -456,7 +456,7 @@ trait Sharing{ public function shareIdsShouldMatch() { if ($this->savedShareId !== $this->lastShareData['data']['id']) { - throw new \Excetion('Expected the same link share to be returned'); + throw new \Exception('Expected the same link share to be returned'); } } } |