diff --git a/tests/ZfcDatagridTest/Column/Action/ButtonTest.php b/tests/ZfcDatagridTest/Column/Action/ButtonTest.php index 3a1f9626..0929b2e0 100644 --- a/tests/ZfcDatagridTest/Column/Action/ButtonTest.php +++ b/tests/ZfcDatagridTest/Column/Action/ButtonTest.php @@ -16,7 +16,7 @@ public function testConstruct() $this->assertEquals([ 'href' => '#', - 'class' => 'btn', + 'class' => 'btn btn-default', ], $button->getAttributes()); } @@ -27,7 +27,7 @@ public function testLabelAndToHtml() $button->setLabel('My label'); $this->assertEquals('My label', $button->getLabel()); - $html = 'My label'; + $html = 'My label'; $this->assertEquals($html, $button->toHtml([])); } @@ -41,7 +41,7 @@ public function testColumnLabelAndToHtml() $button->setLabel($col); $this->assertInstanceOf('ZfcDatagrid\Column\AbstractColumn', $button->getLabel()); - $html = 'Blubb'; + $html = 'Blubb'; $this->assertEquals($html, $button->toHtml(['myCol' => 'Blubb'])); }