Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed Sep 19, 2023
1 parent e202c60 commit 578aa90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/regress/ecl/common/SoapTextTest.ecl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import ^ as root;
multiPart := #IFDEFINED(root.multiPart, true);
variant := #IFDEFINED(root.variant, '');
useSoapCall := #IFDEFINED(root.useSoapcall, false);

//--- end of version configuration ---

import $.^.setup;
Expand Down Expand Up @@ -86,7 +86,7 @@ EXPORT SoapTextTest := MODULE

EXPORT doMain(string serviceUrl, string searchWords, unsigned documentLimit) := FUNCTION

soapcallDocumentCount(string searchWord) := SOAPCALL(serviceUrl, 'soaptest_getdocumentcount', { STRING search := searchWord }, countServiceResponse).cnt;
soapcallDocumentCount(string searchWord) := SOAPCALL(serviceUrl, 'soaptest_getdocumentcount', countServiceRequest, transform(countServiceRequest, SELF.search := searchWord), countServiceResponse).cnt;
callDocumentCount(string search) := IF((serviceUrl != ''), soapcallDocumentCount(search), doDocumentCount(search));

soapcallSearchWords(DATASET(wordRec) searchWords) := SOAPCALL(serviceUrl, 'soaptest_getsearchwords', { DATASET(wordRec) search := searchWords }, DATASET(joinServiceResponseRecord));
Expand Down

0 comments on commit 578aa90

Please sign in to comment.