mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
fix: use boolean false
This commit is contained in:
@@ -463,7 +463,7 @@ class FunctionsCustomServerTest extends Scope
|
||||
|
||||
$deployment = $this->createDeployment($functionId, [
|
||||
'code' => $this->packageFunction('php'),
|
||||
'activate' => 'false'
|
||||
'activate' => false
|
||||
]);
|
||||
|
||||
$this->assertEquals(202, $deployment['headers']['status-code']);
|
||||
@@ -502,7 +502,7 @@ class FunctionsCustomServerTest extends Scope
|
||||
|
||||
$deployment = $this->createDeployment($functionId, [
|
||||
'code' => $this->packageFunction('php'),
|
||||
'activate' => 'false'
|
||||
'activate' => false
|
||||
]);
|
||||
|
||||
$deploymentId = $deployment['body']['$id'] ?? '';
|
||||
|
||||
Reference in New Issue
Block a user