From afa1ba7c1f9ad599d7ee1888a1d8d0939ab72f49 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Sun, 24 May 2020 17:38:48 +0530 Subject: [PATCH] Fix test indent --- tests/test_errors.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_errors.py b/tests/test_errors.py index 702439c..6b23828 100755 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -49,10 +49,10 @@ def test_image_warning(): warnings.simplefilter("error") with pytest.raises(UserWarning) as e: tables = camelot.read_pdf(filename) - assert ( - str(e.value) - == "page-1 is image-based, camelot only works on text-based pages." - ) + assert ( + str(e.value) + == "page-1 is image-based, camelot only works on text-based pages." + ) def test_no_tables_found():