Merge "Use Python 3 as interpreter in test"

This commit is contained in:
Zuul 2020-02-07 03:11:37 +00:00 committed by Gerrit Code Review
commit fabed2437e
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ class TestFailingAsyncProcess(base.BaseTestCase):
def setUp(self):
super(TestFailingAsyncProcess, self).setUp()
path = self.get_temp_file_path('async.tmp', self.get_new_temp_dir())
self.process = async_process.AsyncProcess(['python',
self.process = async_process.AsyncProcess(['python3',
failing_process.__file__,
path],
respawn_interval=0)