diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-12-19 19:12:27 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-12-19 19:12:27 +0100 |
commit | afa5e6098c7fd24ee2a9259a5dbff64a3e2d0a68 (patch) | |
tree | 242a0e92f873ceaf803b0f5f3357d54bc71cf962 /functest/tests | |
parent | 5c20154ceafd6d2dc1e625e2e1b5bc335f1084a6 (diff) |
Delete TestCase.create_snapshot()
OSGC has been removed then this method can be safely removed.
It also updates run_tests.py.
Change-Id: I4030b7f0351d24d095313ae990b08e65d8f69115
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/tests')
-rw-r--r-- | functest/tests/unit/core/test_testcase.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/functest/tests/unit/core/test_testcase.py b/functest/tests/unit/core/test_testcase.py index 6fbf62e2..73ed3470 100644 --- a/functest/tests/unit/core/test_testcase.py +++ b/functest/tests/unit/core/test_testcase.py @@ -223,10 +223,6 @@ class TestCaseTesting(unittest.TestCase): self.assertIn(duration, message) self.assertIn('FAIL', message) - def test_create_snapshot(self): - self.assertEqual(self.test.create_snapshot(), - testcase.TestCase.EX_OK) - def test_clean(self): self.assertEqual(self.test.clean(), None) |