summaryrefslogtreecommitdiff
path: root/testautomation/framework/optional/includes/help_compare_content.inc
diff options
context:
space:
mode:
Diffstat (limited to 'testautomation/framework/optional/includes/help_compare_content.inc')
-rwxr-xr-x[-rw-r--r--]testautomation/framework/optional/includes/help_compare_content.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/testautomation/framework/optional/includes/help_compare_content.inc b/testautomation/framework/optional/includes/help_compare_content.inc
index 15874b0bd758..fc9f9a7de4d9 100644..100755
--- a/testautomation/framework/optional/includes/help_compare_content.inc
+++ b/testautomation/framework/optional/includes/help_compare_content.inc
@@ -43,6 +43,7 @@ testcase tCompareHelpContent()
dim sFileOut as string
dim sFilein as string
dim sFileName as string
+ dim sProductName as string : sProductName = hStringReplaceChar( gProductName, " ", "_" )
' the array that holds the names of the applications
dim aTopicsFromUI( 1200 ) as string
@@ -55,7 +56,8 @@ testcase tCompareHelpContent()
dim brc as boolean
' define input and output paths, presetting variables
- sFileName = gProductName & "_help_content_" & gIsoLang & ".txt"
+
+ sFileName = sProductName & "_help_content_" & gIsoLang & ".txt"
sFileOut = hGetWorkFile( sFilename )
sFileIn = gTesttoolPath & "framework\optional\input\help_browser\"
sFileIn = convertpath( sFileIn & sFileName )
@@ -85,9 +87,7 @@ testcase tCompareHelpContent()
printlog( "" )
printlog( "Beginning comparision" )
irc = hManageComparisionList( sFileIn, sFileOut, aTopicsFromUI() )
- if ( irc <> 0 ) then
- warnlog( "Something went wrong, please review the log." )
- endif
+ hListResultEvaluation( irc , 0 )
endcase