summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorevasquez <eric.vasquez@calxeda.com>2013-08-26 12:12:11 -0500
committerevasquez <eric.vasquez@calxeda.com>2013-08-26 12:12:11 -0500
commit26675748a5450dada6d49083b0d81b0786b668a5 (patch)
tree2b1e544e48899e138b83595ee56f6fcd085e9ad8
parent1b05eb9dfed5b0cada5e56254b6f048d0da7f9db (diff)
downloadcxmanage-26675748a5450dada6d49083b0d81b0786b668a5.tar.gz
nojira: Fixed line too long.
-rw-r--r--cxmanage_test/node_test.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/cxmanage_test/node_test.py b/cxmanage_test/node_test.py
index b1ec34a..f757f9f 100644
--- a/cxmanage_test/node_test.py
+++ b/cxmanage_test/node_test.py
@@ -1,3 +1,4 @@
+# pylint: disable=C0302
"""Unit tests for the Node class."""
@@ -119,8 +120,12 @@ class NodeTest(unittest.TestCase):
self.assertEqual(node.bmc.executed, ["sdr_list"])
self.assertEqual(len(result), 2)
- self.assertTrue(result["Node Power"].sensor_reading.endswith("Watts"))
- self.assertTrue(result["Board Temp"].sensor_reading.endswith("degrees C"))
+ self.assertTrue(
+ result["Node Power"].sensor_reading.endswith("Watts")
+ )
+ self.assertTrue(
+ result["Board Temp"].sensor_reading.endswith("degrees C")
+ )
def test_is_updatable(self):
""" Test node.is_updatable method """