| Index: tools/telemetry/telemetry/core/timeline/model_unittest.py
|
| diff --git a/tools/telemetry/telemetry/core/timeline/model_unittest.py b/tools/telemetry/telemetry/core/timeline/model_unittest.py
|
| index e5a406d6a4964ef612648834cc2957d8847255b8..08d87b4190cfebf305cd1595cd2ad34aa42f4196 100644
|
| --- a/tools/telemetry/telemetry/core/timeline/model_unittest.py
|
| +++ b/tools/telemetry/telemetry/core/timeline/model_unittest.py
|
| @@ -1,8 +1,12 @@
|
| -# Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +# Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| import unittest
|
|
|
| +from telemetry.core.timeline import model
|
| +
|
| class TimelineModelUnittest(unittest.TestCase):
|
| - pass
|
| + def testEmptyImport(self):
|
| + model.TimelineModel([])
|
| + model.TimelineModel('')
|
|
|