From 005d868d68dbb0e70b3f92a685ea269c4f646fd7 Mon Sep 17 00:00:00 2001 From: Panagiotis Karalis Date: Wed, 7 Aug 2019 10:46:52 +0300 Subject: Move the proj to python3 The aim of this patch is to upgrade python version of this project from python2 to python3. Signed-off-by: Panagiotis Karalis Change-Id: I3d3ef01176fda1b23a0542a24625be2f3368c40e --- dovetail/tests/unit/test_run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dovetail/tests/unit/test_run.py') diff --git a/dovetail/tests/unit/test_run.py b/dovetail/tests/unit/test_run.py index b2d618a2..c1e37116 100644 --- a/dovetail/tests/unit/test_run.py +++ b/dovetail/tests/unit/test_run.py @@ -490,7 +490,7 @@ class RunTesting(unittest.TestCase): 'Test area area is not defined.') self.assertEqual(None, result) - @patch('__builtin__.open') + @patch('builtins.open') @patch('dovetail.run.os') @patch('dovetail.run.json') @patch('dovetail.run.uuid') @@ -582,7 +582,7 @@ class RunTesting(unittest.TestCase): mock_get_result.assert_called_once_with() self.assertEqual(expected.code, 0) - @patch('__builtin__.open') + @patch('builtins.open') @patch('dovetail.run.json') @patch('dovetail.run.os') @patch('dovetail.run.uuid') -- cgit 1.2.3-korg