microsoft / omi-script-provider

Script Provider for the OMI Project
Other
8 stars 7 forks source link

Fix NameError exception in test.py #79

Closed alinbalutoiu closed 7 years ago

alinbalutoiu commented 7 years ago

In case in which some of the tests fail, rval is assigned to False.

There are some lines where rval is assigned to 'false' which will raise the exception "NameError: name 'false' is not defined".

The fix consists in replacing 'false' with 'False'.