ci_merchant paypal purchase it works but the money does not get to paypal account
$this->load->library('merchant');
$this->merchant->load('paypal_express');
$settings = array(
'username' => '***************************',
'password' => '****************************',
'signature' => '***************************',
'test_mode' => true);
$this->merchant->initialize($settings);
$params = array(
'amount' => 100.00,
'currency' => 'USD',
'return_url' => 'http://127.0.0.1/freejoboard/index.php/empregos/payed',
'cancel_url' => 'http://127.0.0.1/freejoboard/index.php/empregos/canceled');
$response = $this->merchant->purchase($params);
the paypal opens and i enter the credit card number everything works when i pay redirects to payed webpage but the money never gets to the merchant test account