From b4c3f47174a4ab4eccc6a57ceeb8f701b6e968b7 Mon Sep 17 00:00:00 2001 From: Ravikumara M M Date: Wed, 9 Jan 2019 18:50:13 +0530 Subject: [PATCH] Core case issue --- Resources/ExternalConfiguration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/ExternalConfiguration.php b/Resources/ExternalConfiguration.php index 0acea59..a166680 100644 --- a/Resources/ExternalConfiguration.php +++ b/Resources/ExternalConfiguration.php @@ -29,7 +29,7 @@ function __construct() //creating merchant config object function merchantConfigObject() { - $config = new \CyberSource\Authentication\core\MerchantConfiguration(); + $config = new \CyberSource\Authentication\Core\MerchantConfiguration(); if(is_bool($this->enableLog)) $confiData = $config->setDebug($this->enableLog); @@ -73,7 +73,7 @@ function FutureDate($format){ function CallTestLogging($testId, $apiName, $responseMessage){ $runtime = date('d-m-Y H:i:s'); - $file = fopen("./CSV_Files/TestReport/TestResults.csv", "a+"); + $file = fopen("./SamplesQA/CSV_Files/TestReport/TestResults.csv", "a+"); fputcsv($file, array($testId, $runtime, $apiName, $responseMessage)); fclose($file); }