Created
December 11, 2013 21:48
-
-
Save eevee/7919104 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=================================================== test session starts =================================================== | |
platform linux2 -- Python 2.7.5 -- pytest-2.3.4 | |
plugins: cov | |
collected 1 items | |
whatever.py F | |
======================================================== FAILURES ========================================================= | |
________________________________________________________ test_foo _________________________________________________________ | |
def test_foo(): | |
a = [1, 2, 3] | |
b = [1, 2, 3, 4] | |
> assert len(a) == len(b) | |
E assert 3 == 4 | |
E + where 3 = len([1, 2, 3]) | |
E + and 4 = len([1, 2, 3, 4]) | |
whatever.py:4: AssertionError | |
================================================ 1 failed in 0.01 seconds ================================================= |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment