diff options
Diffstat (limited to 'src/Wallabag/ImportBundle/Tests')
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php b/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php index bc9e2f42..92712b9d 100644 --- a/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php +++ b/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php | |||
@@ -351,7 +351,7 @@ class PocketImportTest extends \PHPUnit_Framework_TestCase | |||
351 | $this->em | 351 | $this->em |
352 | ->expects($this->any()) | 352 | ->expects($this->any()) |
353 | ->method('persist') | 353 | ->method('persist') |
354 | ->with($this->callback(function($persistedEntry) { | 354 | ->with($this->callback(function ($persistedEntry) { |
355 | return $persistedEntry->isArchived(); | 355 | return $persistedEntry->isArchived(); |
356 | })); | 356 | })); |
357 | 357 | ||
diff --git a/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php b/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php index fbcd270d..8ab7e830 100644 --- a/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php +++ b/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php | |||
@@ -103,7 +103,7 @@ class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase | |||
103 | $this->em | 103 | $this->em |
104 | ->expects($this->any()) | 104 | ->expects($this->any()) |
105 | ->method('persist') | 105 | ->method('persist') |
106 | ->with($this->callback(function($persistedEntry) { | 106 | ->with($this->callback(function ($persistedEntry) { |
107 | return $persistedEntry->isArchived(); | 107 | return $persistedEntry->isArchived(); |
108 | })); | 108 | })); |
109 | 109 | ||
diff --git a/src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php b/src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php index c461168c..2b642d27 100644 --- a/src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php +++ b/src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php | |||
@@ -94,7 +94,7 @@ class WallabagV2ImportTest extends \PHPUnit_Framework_TestCase | |||
94 | $this->em | 94 | $this->em |
95 | ->expects($this->any()) | 95 | ->expects($this->any()) |
96 | ->method('persist') | 96 | ->method('persist') |
97 | ->with($this->callback(function($persistedEntry) { | 97 | ->with($this->callback(function ($persistedEntry) { |
98 | return $persistedEntry->isArchived(); | 98 | return $persistedEntry->isArchived(); |
99 | })); | 99 | })); |
100 | 100 | ||