mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
Fix test
This commit is contained in:
parent
0094ced967
commit
9476c064c6
1 changed files with 15 additions and 1 deletions
|
|
@ -200,8 +200,22 @@ class V16Test extends TestCase
|
|||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
public function variableProvider(): array
|
||||
{
|
||||
return [
|
||||
'functionId' => [
|
||||
[
|
||||
'resourceId' => '5e5ea5c16897e',
|
||||
],
|
||||
[
|
||||
'functionId' => '5e5ea5c16897e',
|
||||
],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider usageVariableProvider
|
||||
* @dataProvider variableProvider
|
||||
*/
|
||||
public function testVariable(array $content, array $expected): void
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue