gabbi icon indicating copy to clipboard operation
gabbi copied to clipboard

When using gabbihtml a deprecation warning is issued

Open cdent opened this issue 6 years ago • 0 comments

The warning is:

gabbi/case.py:648: FutureWarning: The behavior of this method will change in future versions. Use specific 'len(elem)' or 'elem is not None' test instead.

It's checking self.response_data and because that's an lxml result at that point it makes that warning. It's likely we can check None as advised there, or len. Depends on if we ever expect an empty string. The existing tests will probably help check the change.

cdent avatar Oct 17 '19 21:10 cdent