aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2016-07-08 11:28:46 +0100
committerMichele Di Giorgio <michele.digiorgio@arm.com>2016-07-08 14:57:15 +0100
commitcd8793fbc3e9f79376fb244307f40996880703f7 (patch)
treef7e00677bdb210732f56ab51431e0714d6d5e486 /tests
parent2ad4f2db78abfd45bf878b5ec3fb3f7c639b4c9e (diff)
downloadtrappy-cd8793fbc3e9f79376fb244307f40996880703f7.tar.gz
plotter: ILinePlot: make _fix_indexes always return a dictionary
Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test_plotter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_plotter.py b/tests/test_plotter.py
index 2ec1fd8..139bea9 100644
--- a/tests/test_plotter.py
+++ b/tests/test_plotter.py
@@ -312,7 +312,7 @@ class TestILinePlotter(unittest.TestCase):
expected_index = index1 + index2
expected_index.sort()
- self.assertEquals(expected_index, merged.index.tolist())
+ self.assertEquals(expected_index, sorted(merged["s1"].keys()))
def test_dygraph_colors(self):
"""Check that to_dygraph_colors() constructs a valid dygraph colors argument"""