From 38078369a56ee7ae4d31f80dd5a5fe5179ebfe73 Mon Sep 17 00:00:00 2001 From: Roy R Date: Sun, 1 Oct 2023 08:47:57 -0400 Subject: [PATCH] Update AccountConfTest.php to fix casing typo --- deploy/tests/integration/AccountConfTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/tests/integration/AccountConfTest.php b/deploy/tests/integration/AccountConfTest.php index 7b3e61389..b8b909f18 100644 --- a/deploy/tests/integration/AccountConfTest.php +++ b/deploy/tests/integration/AccountConfTest.php @@ -229,7 +229,7 @@ public function testLoginFailureOnAccountByName() $account->save(); $res = $account->authenticate('invalid_password'); - $this->assertfalse($res); + $this->assertFalse($res); }