Skip to content

TST: Fix test assertions #16470

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 24, 2017
Merged

Conversation

divergentdave
Copy link
Contributor

  • closes #xxxx
  • tests added / passed
  • passes git diff upstream/master --name-only -- '*.py' | flake8 --diff
  • whatsnew entry

This fixes some test assertions that were only checking the truthiness of a value when they should have been comparing two values. Initially, through typos, tests were written using assertTrue when they should have been using assertEqual. The second argument to assertTrue was being treated as a message instead of as the expected value. More recently, these assertions with typos were transformed to use assert, with the same problems persisting.

I have fixed each of the problems I found on a case-by-case basis. Some lines required more complicated fixes, like adding instanceof() or fixing an expected value. I believe I have found all such instances of this error, because I reviewed all the locations where assertTrue was called with two arguments.

@divergentdave divergentdave changed the title Fix test assertions TST: Fix test assertions May 24, 2017
@jreback jreback added the Testing pandas testing functions or related to the test suite label May 24, 2017
@jreback jreback added this to the 0.21.0 milestone May 24, 2017
@jreback jreback merged commit 6cbd558 into pandas-dev:master May 24, 2017
@jreback
Copy link
Contributor

jreback commented May 24, 2017

thanks!

stangirala pushed a commit to stangirala/pandas that referenced this pull request Jun 11, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Testing pandas testing functions or related to the test suite
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants