diff options
Diffstat (limited to 'tests/units/Base.php')
-rw-r--r-- | tests/units/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/Base.php b/tests/units/Base.php index c7e066d1..f7bee241 100644 --- a/tests/units/Base.php +++ b/tests/units/Base.php @@ -54,7 +54,7 @@ abstract class Base extends PHPUnit_Framework_TestCase $this->container['httpClient'] = $this ->getMockBuilder('\Kanboard\Core\Http\Client') ->setConstructorArgs(array($this->container)) - ->setMethods(array('get', 'getJson', 'postJson', 'postForm')) + ->setMethods(array('get', 'getJson', 'postJson', 'postJsonAsync', 'postForm', 'postFormAsync')) ->getMock(); $this->container['emailClient'] = $this |