Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: tools/telemetry/telemetry/core/gpu_device_unittest.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/core/gpu_device_unittest.py
diff --git a/tools/telemetry/telemetry/core/gpu_device_unittest.py b/tools/telemetry/telemetry/core/gpu_device_unittest.py
index 3ccf516c072965e754b48ba1a5fe39d39f154ae6..1e6415a88d46280a43e23ccce886c70dc87cdd90 100644
--- a/tools/telemetry/telemetry/core/gpu_device_unittest.py
+++ b/tools/telemetry/telemetry/core/gpu_device_unittest.py
@@ -7,6 +7,7 @@ from telemetry.core import gpu_device
class TestGPUDevice(unittest.TestCase):
+
def testConstruction(self):
device = gpu_device.GPUDevice(1000, 2000, 'test_vendor', 'test_device')
self.assertEquals(device.vendor_id, 1000)
@@ -15,10 +16,10 @@ class TestGPUDevice(unittest.TestCase):
self.assertEquals(device.device_string, 'test_device')
def testFromDict(self):
- dictionary = { 'vendor_id': 3000,
- 'device_id': 4000,
- 'vendor_string': 'test_vendor_2',
- 'device_string': 'test_device_2' }
+ dictionary = {'vendor_id': 3000,
+ 'device_id': 4000,
+ 'vendor_string': 'test_vendor_2',
+ 'device_string': 'test_device_2'}
device = gpu_device.GPUDevice.FromDict(dictionary)
self.assertEquals(device.vendor_id, 3000)
self.assertEquals(device.device_id, 4000)
@@ -27,10 +28,10 @@ class TestGPUDevice(unittest.TestCase):
def testMissingAttrsFromDict(self):
data = {
- 'vendor_id': 1,
- 'device_id': 2,
- 'vendor_string': 'a',
- 'device_string': 'b'
+ 'vendor_id': 1,
+ 'device_id': 2,
+ 'vendor_string': 'a',
+ 'device_string': 'b'
}
for k in data:
@@ -41,5 +42,5 @@ class TestGPUDevice(unittest.TestCase):
self.fail('Should raise exception if attribute "%s" is missing' % k)
except AssertionError:
raise
- except:
+ except KeyError:
pass
« no previous file with comments | « tools/telemetry/telemetry/core/forwarders/android_forwarder.py ('k') | tools/telemetry/telemetry/core/gpu_info_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698