From d332fa1e0fd96ac50bd97b9eba67658f676aaa1b Mon Sep 17 00:00:00 2001 From: Jim Paris <jim@jtan.com> Date: Mon, 3 Aug 2020 16:52:02 -0400 Subject: [PATCH] Fix inconsistent indentation --- tests/test_nilmrun.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_nilmrun.py b/tests/test_nilmrun.py index b05fe58..779c1b5 100644 --- a/tests/test_nilmrun.py +++ b/tests/test_nilmrun.py @@ -309,7 +309,7 @@ class TestClient(object): sys.exit(0) # also test raising SystemExit """) with assert_raises(ClientError) as e: - do(code, ["hello", 123], False) + do(code, ["hello", 123], False) in_("400 Bad Request", str(e.exception)) status = do(code, ["hello", "123"], False) eq_(status["log"], "hello 123\n")