Fix broken py3 tests

py3 did not like the mock to int comparison.

Change-Id: If8dde95543eba0313c605a94de1d0c24795b5b0c
This commit is contained in:
Terry Howe
2015-02-12 05:14:24 -07:00
parent 3dfd7e1de9
commit 7e5e42e05c

View File

@@ -62,6 +62,7 @@ class TestBashate(base.TestCase):
m_argparser.return_value = m_parser_obj
m_run_obj = mock.MagicMock()
m_run_obj.WARNINGS = 1
m_run_obj.ERRORS = 1
m_bashaterun.return_value = m_run_obj