From 5c09536386c54e688e6cf0fb9beb473194353264 Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Mon, 3 Oct 2016 03:20:58 -0500 Subject: [PATCH] Enable OVSDB Connection unit tests for py3 The OVS Python library is available for Python 3 and these tests now run fine under Python 3, so go ahead and run them. Change-Id: I579e2d3d3e016befafc61332bcc9147aaa385fe0 --- neutron/tests/unit/agent/ovsdb/native/test_connection.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/neutron/tests/unit/agent/ovsdb/native/test_connection.py b/neutron/tests/unit/agent/ovsdb/native/test_connection.py index 1d460bdbc5a..0c77b372835 100644 --- a/neutron/tests/unit/agent/ovsdb/native/test_connection.py +++ b/neutron/tests/unit/agent/ovsdb/native/test_connection.py @@ -20,7 +20,6 @@ from ovs import poller from neutron.agent.ovsdb.native import connection from neutron.agent.ovsdb.native import idlutils from neutron.tests import base -from neutron.tests.common import helpers class TestOVSNativeConnection(base.BaseTestCase): @@ -45,11 +44,9 @@ class TestOVSNativeConnection(base.BaseTestCase): self.assertEqual(reg_all_called, helper.register_all.called) self.assertEqual(reg_table_called, helper.register_table.called) - @helpers.requires_py2 def test_start_without_table_name_list(self): self._test_start() - @helpers.requires_py2 def test_start_with_table_name_list(self): self._test_start(table_name_list=['fake-table1', 'fake-table2'])