aboutsummaryrefslogtreecommitdiff
path: root/crosperf/machine_image_manager_unittest.py
diff options
context:
space:
mode:
Diffstat (limited to 'crosperf/machine_image_manager_unittest.py')
-rwxr-xr-xcrosperf/machine_image_manager_unittest.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/crosperf/machine_image_manager_unittest.py b/crosperf/machine_image_manager_unittest.py
index 062c185f..fbbca7b6 100755
--- a/crosperf/machine_image_manager_unittest.py
+++ b/crosperf/machine_image_manager_unittest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
@@ -53,13 +53,6 @@ class MachineImageManagerTester(unittest.TestCase):
duts.append(MockDut(n))
return duts
- def print_matrix(self, matrix):
- # pylint: disable=expression-not-assigned
- for r in matrix:
- for v in r:
- print('{} '.format('.' if v == ' ' else v)),
- print('')
-
def create_labels_and_duts_from_pattern(self, pattern):
labels = []
duts = []