| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 import unittest | 4 import unittest |
| 5 | 5 |
| 6 from telemetry import websocket | 6 from telemetry import websocket |
| 7 | 7 |
| 8 class TestWebSocket(unittest.TestCase): | 8 class TestWebSocket(unittest.TestCase): |
| 9 def testExports(self): | 9 def testExports(self): |
| 10 self.assertNotEqual(websocket.create_connection, None) | 10 self.assertNotEqual(websocket.create_connection, None) |
| OLD | NEW |