From e08d82f855ce8fa0b2edaa872e96b9eb8b7d5e6c Mon Sep 17 00:00:00 2001 From: "J. King" Date: Fri, 26 Oct 2018 14:58:36 -0400 Subject: [PATCH] Style fix --- tests/cases/REST/TinyTinyRSS/TestAPI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cases/REST/TinyTinyRSS/TestAPI.php b/tests/cases/REST/TinyTinyRSS/TestAPI.php index 2fc7104..9aea12e 100644 --- a/tests/cases/REST/TinyTinyRSS/TestAPI.php +++ b/tests/cases/REST/TinyTinyRSS/TestAPI.php @@ -245,7 +245,7 @@ LONG_STRING; $data['op'] = "login"; $this->assertMessage($exp1, $this->reqAuth($data, $httpUser)); // base64 passwords are also accepted - if(isset($data['password'])) { + if (isset($data['password'])) { $data['password'] = base64_encode($data['password']); } $this->assertMessage($exp2, $this->reqAuth($data, $httpUser));