From 37e96c93358f9b6d40f97e6a380d0718105f1080 Mon Sep 17 00:00:00 2001 From: Michael K Date: Sat, 10 Oct 2015 13:28:35 +0200 Subject: [PATCH] [doc] Fixed indentation --- doc/en/assert.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/en/assert.rst b/doc/en/assert.rst index cd2a944f5..fb951dd28 100644 --- a/doc/en/assert.rst +++ b/doc/en/assert.rst @@ -192,8 +192,8 @@ provides an alternative explanation for ``Foo`` objects:: from test_foocompare import Foo def pytest_assertrepr_compare(op, left, right): if isinstance(left, Foo) and isinstance(right, Foo) and op == "==": - return ['Comparing Foo instances:', - ' vals: %s != %s' % (left.val, right.val)] + return ['Comparing Foo instances:', + ' vals: %s != %s' % (left.val, right.val)] now, given this test module::