aboutsummaryrefslogtreecommitdiff
path: root/crosperf/flag_test_unittest.py
diff options
context:
space:
mode:
Diffstat (limited to 'crosperf/flag_test_unittest.py')
-rwxr-xr-xcrosperf/flag_test_unittest.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/crosperf/flag_test_unittest.py b/crosperf/flag_test_unittest.py
index 0e743274..cb0e59e6 100755
--- a/crosperf/flag_test_unittest.py
+++ b/crosperf/flag_test_unittest.py
@@ -1,13 +1,17 @@
#!/usr/bin/env python2
-#
-# Copyright 2014 Google Inc. All Rights Reserved.
+# -*- coding: utf-8 -*-
+# Copyright 2014 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""The unittest of flags."""
from __future__ import print_function
-import test_flag
import unittest
+import test_flag
+
class FlagTestCase(unittest.TestCase):
"""The unittest class."""
@@ -15,7 +19,7 @@ class FlagTestCase(unittest.TestCase):
def test_test_flag(self):
# Verify that test_flag.is_test exists, that it is a list,
# and that it contains 1 element.
- self.assertTrue(type(test_flag.is_test) is list)
+ self.assertTrue(isinstance(test_flag.is_test, list))
self.assertEqual(len(test_flag.is_test), 1)
# Verify that the getting the flag works and that the flag
@@ -33,7 +37,7 @@ class FlagTestCase(unittest.TestCase):
# Verify that test_flag.is_test still exists, that it still is a
# list, and that it still contains 1 element.
- self.assertTrue(type(test_flag.is_test) is list)
+ self.assertTrue(isinstance(test_flag.is_test, list))
self.assertEqual(len(test_flag.is_test), 1)