From 474e04479f91e87dee79379b5fdc21337a443c32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 24 Feb 2025 18:44:11 +0100 Subject: [PATCH] Linter fix --- tests/e2e/Services/Proxy/ProxyCustomServerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/Services/Proxy/ProxyCustomServerTest.php b/tests/e2e/Services/Proxy/ProxyCustomServerTest.php index 8ce9a33732..bc2875faf8 100644 --- a/tests/e2e/Services/Proxy/ProxyCustomServerTest.php +++ b/tests/e2e/Services/Proxy/ProxyCustomServerTest.php @@ -252,11 +252,11 @@ class ProxyCustomServerTest extends Scope { $rules = $this->listRules(); $this->assertEquals(200, $rules['headers']['status-code']); - foreach($rules['body']['rules'] as $rule) { + foreach ($rules['body']['rules'] as $rule) { $rule = $this->deleteRule($rule['$id']); $this->assertEquals(204, $rule['headers']['status-code']); } - + $rules = $this->listRules(); $this->assertEquals(200, $rules['headers']['status-code']); $this->assertEquals(0, $rules['body']['total']);