From 06f1917b9caf3500fa2bc90a55c7da8e6fd18adc Mon Sep 17 00:00:00 2001 From: Simon Karlen Date: Thu, 18 Mar 2021 08:27:12 +0100 Subject: [PATCH] fixed test --- tests/framework/grid/ActionColumnTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/framework/grid/ActionColumnTest.php b/tests/framework/grid/ActionColumnTest.php index 55fa5bead0..8a707c1fc6 100644 --- a/tests/framework/grid/ActionColumnTest.php +++ b/tests/framework/grid/ActionColumnTest.php @@ -42,9 +42,9 @@ class ActionColumnTest extends \yiiunit\TestCase return 'http://test.com'; }; $columnContents = $column->renderDataCell(['id' => 1], 1, 0); - $viewButton = ''; - $updateButton = ''; - $deleteButton = ''; + $viewButton = ''; + $updateButton = ''; + $deleteButton = ''; $expectedHtml = "$viewButton $updateButton $deleteButton"; $this->assertEquals($expectedHtml, $columnContents);