We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa7a64 commit da2164bCopy full SHA for da2164b
functions/slack_slash_command/test/DeployTest.php
@@ -51,7 +51,7 @@ public function testFunction(
51
): void {
52
$response = $this->client->request(
53
$method,
54
- '/',
+ '',
55
['headers' => $headers, 'body' => $body]
56
);
57
$this->assertEquals($statusCode, $response->getStatusCode());
@@ -68,7 +68,7 @@ protected static function deployFlags(array $flags = []): array
68
$envVars = 'SLACK_SECRET=' . getenv('SLACK_SECRET') . ',';
69
$envVars .= 'KG_API_KEY=' . getenv('KG_API_KEY');
70
71
- $flags['--update-env-vars'] = $envVars;
+ $flags['--update-env-vars'] = '"' . $envVars . '"';
72
return $flags;
73
}
74
0 commit comments