From 07c272f19775a17be55b37411567d9ad241ccba4 Mon Sep 17 00:00:00 2001 From: Andris Raugulis Date: Fri, 7 Oct 2016 19:55:49 +0300 Subject: [PATCH] Fix warnings in test. --- test/test_output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_output.py b/test/test_output.py index 5661edd..6ad5e49 100644 --- a/test/test_output.py +++ b/test/test_output.py @@ -57,8 +57,8 @@ class TestOutput(object): def test_output_defaults(self): out = self.Output() # default: on - assert out.batch == False - assert out.colors == True + assert out.batch is False + assert out.colors is True assert out.minlevel == 'info' def test_output_colors(self):