diff options
author | Emma Foley <emma.l.foley@intel.com> | 2017-11-23 00:00:47 +0000 |
---|---|---|
committer | Emma Foley <emma.l.foley@intel.com> | 2018-03-02 16:52:36 +0000 |
commit | 6cd3aed0077d6cced71417a48f92527ef1ecbd3e (patch) | |
tree | d54ef8013a754c4dd834b74bb35030abc94abedc /tests/unit/network_services/libs/ixia_libs | |
parent | a74ad5a1ec1a73389c5983440b2031b0bc72cea1 (diff) |
Remove main() and __main__ from tests.
Removes the unnecessary main() functions from tests.
Also removes shebang (#!) where it appears at the top of files.
JIRA: YARDSTICK-861
Change-Id: I79180d1eb9c5bce640142dd62ce28c7437c1b210
Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Diffstat (limited to 'tests/unit/network_services/libs/ixia_libs')
-rw-r--r-- | tests/unit/network_services/libs/ixia_libs/test_IxNet.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/unit/network_services/libs/ixia_libs/test_IxNet.py b/tests/unit/network_services/libs/ixia_libs/test_IxNet.py index 3f374fb50..2a97048aa 100644 --- a/tests/unit/network_services/libs/ixia_libs/test_IxNet.py +++ b/tests/unit/network_services/libs/ixia_libs/test_IxNet.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python - # Copyright (c) 2016-2017 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -36,7 +34,7 @@ class TestIxNextgen(unittest.TestCase): self.assertIsNone(ixnet_gen._bidir) @mock.patch("yardstick.network_services.libs.ixia_libs.IxNet.IxNet.sys") - def test_connect(self, mock_sys): + def test_connect(self, *args): ixnet_gen = IxNextgen() ixnet_gen.get_config = mock.MagicMock() |