Skip to content

Instantly share code, notes, and snippets.

@eevee
Created December 11, 2013 21:48
Show Gist options
  • Save eevee/7919104 to your computer and use it in GitHub Desktop.
Save eevee/7919104 to your computer and use it in GitHub Desktop.
=================================================== 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