diff options
Diffstat (limited to 'xtesting/tests/unit/core')
-rw-r--r-- | xtesting/tests/unit/core/test_robotframework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtesting/tests/unit/core/test_robotframework.py b/xtesting/tests/unit/core/test_robotframework.py index 4cda171c..398cf87a 100644 --- a/xtesting/tests/unit/core/test_robotframework.py +++ b/xtesting/tests/unit/core/test_robotframework.py @@ -283,7 +283,7 @@ class RunTesting(unittest.TestCase): def test_generate_report_err(self): with mock.patch.object(self.test, 'generate_report', return_value=1) as mmethod: - self._test_generate_report(self.test.EX_RUN_ERROR) + self._test_generate_report(self.test.EX_OK) mmethod.assert_called_once_with() def test_generate_report(self): |