After upgrading to 0.0.79 (from 0.0.78), several tests are now failing, even though the Found value meets the testing criteria.
For example:
Expected value (Less Or Equal): 4000, Found value: 469.07
Expected value (Less Than): 7/7/2022 4:01:19 AM, Found value: 1/3/2022 6:02:33 AM
Expected value (Less Or Equal): 0, Found value: -184
After upgrading to 0.0.79 (from 0.0.78), several tests are now failing, even though the Found value meets the testing criteria.
For example:
This change... https://github.com/EvotecIT/Testimo/blob/6a070fb6d4cef011266e24f4e7bc358da1376b61/Private/Test-StepTwo.ps1#L43-L45
...causes the following tests (which use
ExpectedValue
instead ofExpectedCount
) to fail in certain cases because they're being compared as strings instead of their native types: https://github.com/EvotecIT/Testimo/blob/4c40f9843ddba41e24383f461288fa0109760ae7/Private/SourcesDomainControllers/Ldap.ps1#L108-L121 https://github.com/EvotecIT/Testimo/blob/4c40f9843ddba41e24383f461288fa0109760ae7/Private/SourcesDomainControllers/Ldap.ps1#L136-L149 https://github.com/EvotecIT/Testimo/blob/4c40f9843ddba41e24383f461288fa0109760ae7/Private/SourcesDomainControllers/EventLogs.ps1#L113-L122All of them have basetypes of
ValueType
:There may be more tests with this issue, they're just not failing in my environment.