summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-02 11:19:15 +0000
committerGerrit Code Review <review@openstack.org>2016-08-02 11:19:15 +0000
commit6a851fc4c9f95c7c6ddbcf2352ca3f13c9b14040 (patch)
treee852d1a6ffc3f5ac209693cfc533962a3414b40a
parentc925bae45b3d8bd31444fb663d00489680a27c64 (diff)
parent2633f03b58f7d65b0be47245014fac47c49a1929 (diff)
downloadpython-heatclient-6a851fc4c9f95c7c6ddbcf2352ca3f13c9b14040.tar.gz
Merge "Remove unused function"
-rw-r--r--heatclient/tests/unit/osc/utils.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/heatclient/tests/unit/osc/utils.py b/heatclient/tests/unit/osc/utils.py
index a3e5aaf..e2ed52e 100644
--- a/heatclient/tests/unit/osc/utils.py
+++ b/heatclient/tests/unit/osc/utils.py
@@ -56,19 +56,6 @@ class TestCase(testtools.TestCase):
standardMsg = '%s is not an instance of %r' % (obj, cls)
self.fail(self._formatMessage(msg, standardMsg))
- def assertDictEqual(self, d1, d2, msg=None):
- # Simple version taken from 2.7
- self.assertIsInstance(d1, dict,
- 'First argument is not a dictionary')
- self.assertIsInstance(d2, dict,
- 'Second argument is not a dictionary')
- if d1 != d2:
- if msg:
- self.fail(msg)
- else:
- standardMsg = '%r != %r' % (d1, d2)
- self.fail(standardMsg)
-
class TestCommand(TestCase):
"""Test cliff command classes"""