From 0f327d610517922eb7243929cee91aa29d9d2675 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 15 May 2014 23:20:52 +0200 Subject: use custom trait to fix tests on 5.4 --- tests/unit/controller/JSONHttpErrorTest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/unit/controller/JSONHttpErrorTest.php b/tests/unit/controller/JSONHttpErrorTest.php index dfcbd202e..ffbbbed43 100644 --- a/tests/unit/controller/JSONHttpErrorTest.php +++ b/tests/unit/controller/JSONHttpErrorTest.php @@ -15,13 +15,17 @@ namespace OCA\News\Controller; require_once(__DIR__ . "/../../classloader.php"); +class Test { + use JSONHttpError; +} class JSONHttpErrorTest extends \PHPUnit_Framework_TestCase { public function testError() { $ex = new \Exception('hi'); - $result = JSONHttpError::error($ex, 3); + $test = new Test(); + $result = $test->error($ex, 3); $this->assertEquals(['message' => 'hi'], $result->getData()); $this->assertEquals(3, $result->getStatus()); -- cgit v1.2.3