There are several test decorators in ACTS that generate functions from bound methods. Calling inspect.ismethod() on these decorated tests would return False, even though they are valid test cases. Using callable() instead would allow these tests to be included.
There are several test decorators in ACTS that generate functions from bound methods. Calling inspect.ismethod() on these decorated tests would return False, even though they are valid test cases. Using callable() instead would allow these tests to be included.
This change is