diff options
author | Klement Sekera <ksekera@cisco.com> | 2017-02-16 10:53:53 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-02-26 14:20:24 +0000 |
commit | 239790fd91b3f62e5eda1042a97f9216fe59856e (patch) | |
tree | ee72fc8e39c16f01249c72183f1a26904139fafe /test/framework.py | |
parent | 263440e789d29e6e6b0038fcfd4e28e1c7160e83 (diff) |
BFD: echo function
Change-Id: Ib1e301d62b687d4e42434239e7cd412065c28da0
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/framework.py b/test/framework.py index 90e0574a890..3bbd37d5d59 100644 --- a/test/framework.py +++ b/test/framework.py @@ -574,7 +574,7 @@ class VppTestCase(unittest.TestCase): def assert_equal(self, real_value, expected_value, name_or_class=None): if name_or_class is None: - self.assertEqual(real_value, expected_value, msg) + self.assertEqual(real_value, expected_value) return try: msg = "Invalid %s: %d('%s') does not match expected value %d('%s')" |