Skip to content

Commit

Permalink
Bump version (#126)
Browse files Browse the repository at this point in the history
* Bump version

* Update travis

* Mock a magic method
  • Loading branch information
VicDeo authored and DeepDiver1975 committed Oct 10, 2016
1 parent 316bf80 commit 28b2399
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
@@ -1,8 +1,6 @@
language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7

Expand Down Expand Up @@ -39,11 +37,11 @@ script:

matrix:
include:
- php: 5.4
- php: 7
env: DB=mysql
- php: 5.4
- php: 7
env: DB=pgsql
- php: 5.4
- php: 7
env: DB=oracle
allow_failures:
- php: hhvm
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Expand Up @@ -10,7 +10,7 @@ For this app to be effective, the ClamAV virus definitions should be kept up to
<repository type="git">http://github.com/owncloud/files_antivirus.git</repository>
<licence>AGPL</licence>
<author>Manuel Delgado, Bart Visscher, thinksilicon.de, Victor Dubiniuk</author>
<version>0.9.0.0</version>
<version>0.10.0.0</version>
<types>
<filesystem/>
</types>
Expand Down
7 changes: 6 additions & 1 deletion tests/ItemTest.php
Expand Up @@ -41,7 +41,12 @@ public function setUp() {
\OC\Files\Filesystem::init('test', '');
$view = new \OC\Files\View('/test/files');
$view->file_put_contents('file1', self::CONTENT);
$this->config->method('getAvChunkSize')->willReturn('1024');
$this->config->method('__call')
->with(
$this->equalTo('getAvChunkSize')
)
->willReturn('1024')
;
}

public function testRead() {
Expand Down

0 comments on commit 28b2399

Please sign in to comment.