Completed
Pull Request — master (#12)
by Jason
17:19 queued 04:15
created
tests/ViewableDataObjectTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         $object = $this->getObject();
68 68
         $page = $this->objFromFixture(\Page::class, 'default');
69
-        $this->assertEquals($page->Link() . 'view/' . $object->URLSegment, $object->Link());
69
+        $this->assertEquals($page->Link().'view/'.$object->URLSegment, $object->Link());
70 70
     }
71 71
 
72 72
     /**
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     {
77 77
         $object = $this->getObject();
78 78
         $page = $this->objFromFixture(\Page::class, 'default');
79
-        $this->assertEquals($page->AbsoluteLink() . 'view/' . $object->URLSegment, $object->getAbsoluteLink());
79
+        $this->assertEquals($page->AbsoluteLink().'view/'.$object->URLSegment, $object->getAbsoluteLink());
80 80
     }
81 81
 
82 82
     /**
Please login to merge, or discard this patch.