From 01cf206e0e1b3c1a6c97df7cc62937447d22325e Mon Sep 17 00:00:00 2001
From: nick <nick@manticoresearch.com>
Date: Tue, 5 Nov 2024 21:54:46 +0700
Subject: [PATCH] Updated tests

---
 test/Manticoresearch/Endpoints/Nodes/TablesTest.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/test/Manticoresearch/Endpoints/Nodes/TablesTest.php b/test/Manticoresearch/Endpoints/Nodes/TablesTest.php
index d7438397..4b5e5659 100644
--- a/test/Manticoresearch/Endpoints/Nodes/TablesTest.php
+++ b/test/Manticoresearch/Endpoints/Nodes/TablesTest.php
@@ -35,8 +35,10 @@ public function testTables() {
 		$client = $helper->getClient();
 		$response = $client->nodes()->tables();
 		$result = [
-			'Table' => 'products',
-			'Type' => 'rt',
+			[
+				'Table' => 'products',
+				'Type' => 'rt',
+			],
 		];
 		$this->assertEquals($result, $response);
 	}