Skip to content

Commit 2027479

Browse files
style: run prettier on changed files
1 parent fc189fc commit 2027479

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pfSense-pkg-RESTAPI/files/usr/local/pkg/RESTAPI/Tests/APICoreDispatcherTestCase.inc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ class APICoreDispatcherTestCase extends TestCase {
137137
$dispatcher->schedule = '1 2 3 4 5';
138138
$dispatcher_cron_job = $dispatcher->setup_schedule();
139139
$cron_job_cmd = '/usr/local/pkg/RESTAPI/.resources/scripts/manage.php notifydispatcher Dispatcher';
140-
$this->assert_equals($dispatcher_cron_job->minute->value, "1");
141-
$this->assert_equals($dispatcher_cron_job->hour->value, "2");
142-
$this->assert_equals($dispatcher_cron_job->mday->value, "3");
143-
$this->assert_equals($dispatcher_cron_job->month->value, "4");
144-
$this->assert_equals($dispatcher_cron_job->wday->value, "5");
140+
$this->assert_equals($dispatcher_cron_job->minute->value, '1');
141+
$this->assert_equals($dispatcher_cron_job->hour->value, '2');
142+
$this->assert_equals($dispatcher_cron_job->mday->value, '3');
143+
$this->assert_equals($dispatcher_cron_job->month->value, '4');
144+
$this->assert_equals($dispatcher_cron_job->wday->value, '5');
145145
$this->assert_equals($dispatcher_cron_job->command->value, $cron_job_cmd);
146146

147147
# Delete the CronJob

0 commit comments

Comments
 (0)