Fix tests
This commit is contained in:
parent
a7a338a189
commit
3d9fd4d31f
3 changed files with 5 additions and 2 deletions
|
@ -321,6 +321,7 @@ class RCrmActions
|
|||
|
||||
/** @var \Intaro\RetailCrm\Service\Utils $utils */
|
||||
$utils = ServiceLocator::getOrCreate(\Intaro\RetailCrm\Service\Utils::class);
|
||||
|
||||
return $utils->fromUTF8($str);
|
||||
}
|
||||
|
||||
|
|
|
@ -187,8 +187,9 @@ class RetailCrmService
|
|||
$countryList = [];
|
||||
|
||||
if (file_exists($server . '/bitrix/modules/intaro.retailcrm/classes/general/config/country.xml')) {
|
||||
$countrysFile = simplexml_load_file($server . '/bitrix/modules/intaro.retailcrm/classes/general/config/country.xml');
|
||||
foreach ($countrysFile->country as $country) {
|
||||
$countryFile = simplexml_load_file($server . '/bitrix/modules/intaro.retailcrm/classes/general/config/country.xml');
|
||||
|
||||
foreach ($countryFile->country as $country) {
|
||||
$countryList[RCrmActions::fromJSON((string) $country->name)] = (string) $country->alpha;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -154,6 +154,7 @@ class RetailCrmOrder_v5Test extends BitrixTestCase {
|
|||
|
||||
$rcrmActions = Mockery::mock('alias:' . RCrmActions::class);
|
||||
$rcrmActions->shouldReceive('apiMethod')->withAnyArgs()->andReturn(true);
|
||||
$rcrmActions->shouldReceive('fromJSON')->withAnyArgs()->andReturn('');
|
||||
|
||||
$result = RetailCrmOrder::uploadOrders();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue