Fix rooibos bsc compile errors.
This commit is contained in:
parent
d41ee1b9bd
commit
3427114648
|
@ -851,7 +851,7 @@ function RBS_BTS_AssertNodeNotContainsFields(node , subset , msg = "" ) as dynam
|
|||
key = item
|
||||
value = item[key]
|
||||
end if
|
||||
if RBS_CMN_NodeContains(node, value, key)
|
||||
if RBS_CMN_NodeContains(node, value)
|
||||
msg = "Node has the '" + RBS_CMN_AsString(value) + "' value."
|
||||
m.currentResult.AddResult(msg)
|
||||
return m.GetLegacyCompatibleReturnValue(false)
|
||||
|
@ -1225,7 +1225,7 @@ function RBS_BTS_CleanMocks() as void
|
|||
else if (aa <> invalid and GetInterface(aa, "ifSGNodeChildren") <> invalid)
|
||||
value = aa.getChild(key)
|
||||
else if (aa <> invalid and GetInterface(aa, "ifAssociativeArray") <> invalid)
|
||||
key = tostr(key)
|
||||
key = key.ToStr()
|
||||
if not aa.doesExist(key)
|
||||
exit while
|
||||
end if
|
||||
|
@ -1260,6 +1260,7 @@ end function
|
|||
function RBS_CMN_GetFunction(filename, functionName) as object
|
||||
if (not RBS_CMN_IsNotEmptyString(functionName)) then return invalid
|
||||
if (not RBS_CMN_IsNotEmptyString(filename)) then return invalid
|
||||
'bs:disable-next-line
|
||||
mapFunction = RBSFM_getFunctionsForFile(filename)
|
||||
if mapFunction <> invalid
|
||||
map = mapFunction()
|
||||
|
@ -1274,9 +1275,11 @@ function RBS_CMN_GetFunction(filename, functionName) as object
|
|||
end function
|
||||
function RBS_CMN_GetFunctionBruteForce(functionName) as object
|
||||
if (not RBS_CMN_IsNotEmptyString(functionName)) then return invalid
|
||||
'bs:disable-next-line
|
||||
filenames = RBSFM_getFilenames()
|
||||
for i = 0 to filenames.count() - 1
|
||||
filename = filenames[i]
|
||||
'bs:disable-next-line
|
||||
mapFunction = RBSFM_getFunctionsForFile(filename)
|
||||
if mapFunction <> invalid
|
||||
map = mapFunction()
|
||||
|
@ -1601,6 +1604,7 @@ function UnitTestRuntimeConfig()
|
|||
return this
|
||||
end function
|
||||
function RBS_CreateSuites()
|
||||
'bs:disable-next-line
|
||||
suites = RBSFM_getTestSuitesForProject()
|
||||
includedSuites = []
|
||||
for i = 0 to suites.count() -1
|
||||
|
|
Loading…
Reference in New Issue
Block a user