diff options
author | VirtualTam <virtualtam@flibidi.net> | 2018-12-02 23:24:58 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2019-01-12 22:47:48 +0100 |
commit | bdc5152d486ca75372c271f94623b248bc127800 (patch) | |
tree | 45012b55c96215f83dc863882717822ce5aa9e25 /tests/api/controllers/links/DeleteLinkTest.php | |
parent | 1826e383ecf501302974132fd443cf1ca06e10f6 (diff) | |
download | Shaarli-bdc5152d486ca75372c271f94623b248bc127800.tar.gz Shaarli-bdc5152d486ca75372c271f94623b248bc127800.tar.zst Shaarli-bdc5152d486ca75372c271f94623b248bc127800.zip |
namespacing: \Shaarli\History
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'tests/api/controllers/links/DeleteLinkTest.php')
-rw-r--r-- | tests/api/controllers/links/DeleteLinkTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/api/controllers/links/DeleteLinkTest.php b/tests/api/controllers/links/DeleteLinkTest.php index 7d797137..07371e7a 100644 --- a/tests/api/controllers/links/DeleteLinkTest.php +++ b/tests/api/controllers/links/DeleteLinkTest.php | |||
@@ -37,7 +37,7 @@ class DeleteLinkTest extends \PHPUnit_Framework_TestCase | |||
37 | protected $linkDB; | 37 | protected $linkDB; |
38 | 38 | ||
39 | /** | 39 | /** |
40 | * @var \History instance. | 40 | * @var \Shaarli\History instance. |
41 | */ | 41 | */ |
42 | protected $history; | 42 | protected $history; |
43 | 43 | ||
@@ -62,7 +62,7 @@ class DeleteLinkTest extends \PHPUnit_Framework_TestCase | |||
62 | $this->linkDB = new \LinkDB(self::$testDatastore, true, false); | 62 | $this->linkDB = new \LinkDB(self::$testDatastore, true, false); |
63 | $refHistory = new \ReferenceHistory(); | 63 | $refHistory = new \ReferenceHistory(); |
64 | $refHistory->write(self::$testHistory); | 64 | $refHistory->write(self::$testHistory); |
65 | $this->history = new \History(self::$testHistory); | 65 | $this->history = new \Shaarli\History(self::$testHistory); |
66 | $this->container = new Container(); | 66 | $this->container = new Container(); |
67 | $this->container['conf'] = $this->conf; | 67 | $this->container['conf'] = $this->conf; |
68 | $this->container['db'] = $this->linkDB; | 68 | $this->container['db'] = $this->linkDB; |
@@ -100,7 +100,7 @@ class DeleteLinkTest extends \PHPUnit_Framework_TestCase | |||
100 | $this->assertFalse(isset($this->linkDB[$id])); | 100 | $this->assertFalse(isset($this->linkDB[$id])); |
101 | 101 | ||
102 | $historyEntry = $this->history->getHistory()[0]; | 102 | $historyEntry = $this->history->getHistory()[0]; |
103 | $this->assertEquals(\History::DELETED, $historyEntry['event']); | 103 | $this->assertEquals(\Shaarli\History::DELETED, $historyEntry['event']); |
104 | $this->assertTrue( | 104 | $this->assertTrue( |
105 | (new \DateTime())->add(\DateInterval::createFromDateString('-5 seconds')) < $historyEntry['datetime'] | 105 | (new \DateTime())->add(\DateInterval::createFromDateString('-5 seconds')) < $historyEntry['datetime'] |
106 | ); | 106 | ); |