diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-04-20 16:39:38 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-04-23 12:36:12 +0200 |
commit | a0c722ad693e4f5ba580b22f720aa00d31504cad (patch) | |
tree | 2ae281f8771b445232bf9b218c6ce688d43c0779 /tests | |
parent | 5608b5077873d1d6b83b2a0c7c45b6a6b243a61c (diff) | |
download | nextcloud-server-a0c722ad693e4f5ba580b22f720aa00d31504cad.tar.gz nextcloud-server-a0c722ad693e4f5ba580b22f720aa00d31504cad.zip |
Run cs:Fix
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/BackgroundJob/JobTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/BackgroundJob/JobTest.php b/tests/lib/BackgroundJob/JobTest.php index b44324711b8..ca9d68f0a2b 100644 --- a/tests/lib/BackgroundJob/JobTest.php +++ b/tests/lib/BackgroundJob/JobTest.php @@ -63,7 +63,7 @@ class JobTest extends \Test\TestCase { public function testDisallowParallelRunsWithNoOtherJobs() { $jobList = new DummyJobList(); - $job = new TestJob($this->timeFactory, $this, function() { + $job = new TestJob($this->timeFactory, $this, function () { }); $job->setAllowParallelRuns(false); $jobList->add($job); @@ -76,7 +76,7 @@ class JobTest extends \Test\TestCase { public function testAllowParallelRunsWithNoOtherJobs() { $jobList = new DummyJobList(); - $job = new TestJob($this->timeFactory, $this, function() { + $job = new TestJob($this->timeFactory, $this, function () { }); $job->setAllowParallelRuns(true); $jobList->add($job); @@ -89,7 +89,7 @@ class JobTest extends \Test\TestCase { public function testAllowParallelRunsWithOtherJobs() { $jobList = new DummyJobList(); - $job = new TestJob($this->timeFactory, $this, function() { + $job = new TestJob($this->timeFactory, $this, function () { }); $job->setAllowParallelRuns(true); $jobList->add($job); @@ -102,7 +102,7 @@ class JobTest extends \Test\TestCase { public function testDisallowParallelRunsWithOtherJobs() { $jobList = new DummyJobList(); - $job = new TestJob($this->timeFactory, $this, function() { + $job = new TestJob($this->timeFactory, $this, function () { }); $job->setAllowParallelRuns(false); $jobList->add($job); |