Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eb9b84d

Browse files
committed
type correction
1 parent 03ef53f commit eb9b84d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/core/common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -519,20 +519,20 @@ def paramToDict(place, parameters=None):
519519

520520
if len(conf.testParameter) > 1:
521521
warnMsg = "the testable parameters '%s' " % paramStr
522-
warnMsg += "you provided are not into the %s" % place
522+
warnMsg += "you provided are not inside the %s" % place
523523
else:
524524
parameter = conf.testParameter[0]
525525

526526
warnMsg = "the testable parameter '%s' " % paramStr
527-
warnMsg += "you provided is not into the %s" % place
527+
warnMsg += "you provided is not inside the %s" % place
528528

529529
logger.warn(warnMsg)
530530

531531
elif len(conf.testParameter) != len(testableParameters.keys()):
532532
for parameter in conf.testParameter:
533533
if not testableParameters.has_key(parameter):
534534
warnMsg = "the testable parameter '%s' " % parameter
535-
warnMsg += "you provided is not into the %s" % place
535+
warnMsg += "you provided is not inside the %s" % place
536536
logger.warn(warnMsg)
537537

538538
return testableParameters

0 commit comments

Comments
 (0)