Unify DataResponse format with its uses in the rest of the file
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
0c8627a7ee
commit
d7e45d45c4
|
@ -137,12 +137,15 @@ class ThemingControllerTest extends TestCase {
|
|||
->with($message)
|
||||
->willReturn($message);
|
||||
|
||||
$expected = new DataResponse([
|
||||
'data' => [
|
||||
'message' => $message,
|
||||
],
|
||||
'status' => $status,
|
||||
]);
|
||||
$expected = new DataResponse(
|
||||
[
|
||||
'data' =>
|
||||
[
|
||||
'message' => $message,
|
||||
],
|
||||
'status' => $status,
|
||||
]
|
||||
);
|
||||
$this->assertEquals($expected, $this->themingController->updateStylesheet($setting, $value));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue