X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_vhost.py;h=b9cc1102d5d350b1f661ff80a6f9fe12d8d23773;hb=8b2fffd93f5f42ae35b0843c8a95681a13c84e90;hp=15eb0701f9183b636234ab0f2510280988f09222;hpb=22ab6f7cbb0f6139302aa6ca9f0c96dba17a37a7;p=vpp.git diff --git a/test/test_vhost.py b/test/test_vhost.py index 15eb0701f91..b9cc1102d5d 100644 --- a/test/test_vhost.py +++ b/test/test_vhost.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import unittest @@ -11,6 +11,13 @@ class TesVhostInterface(VppTestCase): """Vhost User Test Case """ + @classmethod + def setUpClass(cls): + super(TesVhostInterface, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TesVhostInterface, cls).tearDownClass() def tearDown(self): super(TesVhostInterface, self).tearDown() @@ -92,8 +99,8 @@ class TesVhostInterface(VppTestCase): vhost_if.add_vpp_config() self.sleep(0.1) events = self.vapi.collect_events() - # creating interface doesn't currently create events - self.assert_equal(len(events), 0, "number of events") + # creating interface does now create events + self.assert_equal(len(events), 1, "number of events") vhost_if.admin_up() vhost_if.assert_interface_state(1, 0, expect_event=True)