We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd982b commit 1a7ea6dCopy full SHA for 1a7ea6d
tests/AccountTest.php
@@ -287,11 +287,13 @@ public function testGetSubAccountDetail(Account $api)
287
public function testSubTransfer(Account $api)
288
{
289
$transfer = [
290
- 'clientOid' => uniqid(),
291
- 'amount' => 1,
292
- 'direction' => 'OUT',
293
- 'currency' => 'KCS',
294
- 'subUserId' => '5cc5b31c38300c336230d071',
+ 'clientOid' => uniqid(),
+ 'amount' => 1,
+ 'direction' => 'OUT',
+ 'currency' => 'KCS',
+ 'accountType' => 'main',
295
+ 'subAccountType' => 'trade',
296
+ 'subUserId' => '5cc5b31c38300c336230d071',
297
];
298
$result = $api->subTransfer($transfer);
299
$this->assertInternalType('array', $result);
0 commit comments