Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorLarisa Grigorjeva <larisa.grigorjeva@zabbix.com>2022-03-10 12:46:22 +0300
committerLarisa Grigorjeva <larisa.grigorjeva@zabbix.com>2022-03-10 12:51:21 +0300
commit249811dafcb60fc67b0fc11bf6a9556f2c7f1381 (patch)
treef2e3bf922ebf4132cc7f95a2ddd221980f16ae87 /ui
parentd6a2219925632de5c55922059c566b711afef96d (diff)
.......... [DEV-2070] fixed trailing commas
Diffstat (limited to 'ui')
-rw-r--r--ui/tests/selenium/testPageLatestData.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/tests/selenium/testPageLatestData.php b/ui/tests/selenium/testPageLatestData.php
index b8bc49fe43b..4868f1419fb 100644
--- a/ui/tests/selenium/testPageLatestData.php
+++ b/ui/tests/selenium/testPageLatestData.php
@@ -62,7 +62,7 @@ class testPageLatestData extends CWebTest {
// Create host for items.
$hosts = CDataHelper::call('host.create', [
'host' => self::HOSTNAME,
- 'groups' => [['groupid' => self::$data['hostgroupid']]],
+ 'groups' => [['groupid' => self::$data['hostgroupid']]]
]);
$this->assertArrayHasKey('hostids', $hosts);
@@ -606,7 +606,7 @@ class testPageLatestData extends CWebTest {
$this->assertTableData([
['Name' => 'Free swap space'],
['Name' => 'Free swap space in %'],
- ['Name' => 'Total swap space'],
+ ['Name' => 'Total swap space']
], $this->getTableSelector()
);
}