Completed
Push — master ( 7b72d4...006b00 )
by Jason
9s
created
tests/ViewableDataObjectTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,14 +46,14 @@
 block discarded – undo
46 46
     {
47 47
         $object = $this->getObject();
48 48
         $page = $this->objFromFixture('Page', 'default');
49
-        $this->assertEquals($page->Link() . 'view/' . $object->URLSegment, $object->Link());
49
+        $this->assertEquals($page->Link().'view/'.$object->URLSegment, $object->Link());
50 50
     }
51 51
 
52 52
     public function testGetAbsoluteLink()
53 53
     {
54 54
         $object = $this->getObject();
55 55
         $page = $this->objFromFixture('Page', 'default');
56
-        $this->assertEquals($page->AbsoluteLink() . 'view/' . $object->URLSegment, $object->getAbsoluteLink());
56
+        $this->assertEquals($page->AbsoluteLink().'view/'.$object->URLSegment, $object->getAbsoluteLink());
57 57
     }
58 58
 
59 59
     public function testValidURLSegment()
Please login to merge, or discard this patch.