Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

PyTest compare strings

def get_string():
    return "abc"

def test_string_equal():
    assert get_string() == "abd"

$ pytest test_string_equal.py

Output:

    def test_string_equal():
>       assert get_string() == "abd"
E       AssertionError: assert 'abc' == 'abd'
E         - abc
E         + abd