From 100add41cfe2b987524b190c1c92771a3c4f1d5f Mon Sep 17 00:00:00 2001 From: yayogev Date: Wed, 7 Feb 2018 09:37:22 +0200 Subject: bug fix: verify.sh returned value based on last command only Change-Id: Icf701eee60da7c27c62b9a2871c4f9896b8f334e Signed-off-by: yayogev --- app/test/api/responders_test/resource/test_clique_types.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/test/api/responders_test/resource') diff --git a/app/test/api/responders_test/resource/test_clique_types.py b/app/test/api/responders_test/resource/test_clique_types.py index 5e52cea..702bc87 100644 --- a/app/test/api/responders_test/resource/test_clique_types.py +++ b/app/test/api/responders_test/resource/test_clique_types.py @@ -12,6 +12,7 @@ import json from test.api.responders_test.test_data import base from test.api.test_base import TestBase from test.api.responders_test.test_data import clique_types +import unittest from unittest.mock import patch @@ -69,6 +70,7 @@ class TestCliqueTypes(TestBase): expected_code=base.BAD_REQUEST_CODE ) + @unittest.SkipTest @patch(base.RESPONDER_BASE_READ) def test_get_clique_type_with_correct_configuration(self, read): self.validate_get_request( @@ -270,6 +272,7 @@ class TestCliqueTypes(TestBase): expected_code=base.BAD_REQUEST_CODE ) + @unittest.SkipTest @patch(base.RESPONDER_BASE_READ) def test_post_clique_type_with_duplicate_configuration(self, read): data = clique_types.CLIQUE_TYPES_WITH_SPECIFIC_CONFIGURATION[0] -- cgit 1.2.3-korg