Add incident column for when an incident occurred at (#2212)

Add incident column for when an incident occurred at. Closes #2208
[ci skip] [skip ci]
This commit is contained in:
James Brooks
2016-10-29 17:25:52 +01:00
committed by GitHub
parent 0e0a7d9db2
commit a0f2d6642e
26 changed files with 331 additions and 79 deletions

View File

@@ -37,7 +37,7 @@ class ReportIncidentCommandTest extends AbstractTestCase
'component_status' => 1,
'notify' => false,
'stickied' => false,
'incident_date' => null,
'occurred_at' => null,
'template' => null,
'template_vars' => [],
];
@@ -51,7 +51,7 @@ class ReportIncidentCommandTest extends AbstractTestCase
$params['component_status'],
$params['notify'],
$params['stickied'],
$params['incident_date'],
$params['occurred_at'],
$params['template'],
$params['template_vars']
);

View File

@@ -39,7 +39,7 @@ class UpdateIncidentCommandTest extends AbstractTestCase
'component_status' => 1,
'notify' => false,
'stickied' => false,
'incident_date' => null,
'occurred_at' => null,
'template' => null,
'template_vars' => [],
];
@@ -54,7 +54,7 @@ class UpdateIncidentCommandTest extends AbstractTestCase
$params['component_status'],
$params['notify'],
$params['stickied'],
$params['incident_date'],
$params['occurred_at'],
$params['template'],
$params['template_vars']
);