You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had a problem with our own DoFixtures, where we use a read function to retrieve object properties, returning type object. The type of the returned object instance depends on the actual property requested, for example string. The problem is that the FlowFixtureBase. Check() method uses the return type of the accessor (in this case "object") to pass to the possible cell handlers to find a match; the RegEx and NumericCompare both did not match because they require string and numeric types.
match on typeof(object). use result.gettype to pick real operator
The text was updated successfully, but these errors were encountered: