summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/samples
diff options
context:
space:
mode:
authorhongyuzhao <zhao.hongyu@zte.com.cn>2019-06-28 09:51:33 +0800
committerhongyuzhao <zhao.hongyu@zte.com.cn>2019-07-03 11:19:09 +0800
commit46ad7c172411214c5432ed93fda4271288077447 (patch)
tree74adb32f9cdfe575184e67068faac9bc6c2117b7 /lcm/lcm/samples
parent37b1ae2386c365293249421595f0722c25bc8e8d (diff)
vfclcm upgrade from python2 to python3
Change-Id: Ia55ae38ec64fc3d821d1e7e1c0cbe48b572a0dd4 Issue-ID: VFC-1429 Signed-off-by: hongyuzhao <zhao.hongyu@zte.com.cn>
Diffstat (limited to 'lcm/lcm/samples')
-rw-r--r--lcm/lcm/samples/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcm/lcm/samples/tests.py b/lcm/lcm/samples/tests.py
index 9f1069d2..896a3315 100644
--- a/lcm/lcm/samples/tests.py
+++ b/lcm/lcm/samples/tests.py
@@ -376,7 +376,7 @@ class SampleViewTest(unittest.TestCase):
r4_data_create_port,
r6_data_list_image, r6_data_create_vm, r6_data_get_vm]
resp = self.client.post(inst_res_url, data=json.dumps(inst_res_data), content_type='application/json')
- self.failUnlessEqual(status.HTTP_204_NO_CONTENT, resp.status_code)
+ self.assertEqual(status.HTTP_204_NO_CONTENT, resp.status_code)
@mock.patch.object(restcall, 'call_req')
def test_term_res(self, mock_call_req):
@@ -389,7 +389,7 @@ class SampleViewTest(unittest.TestCase):
r0_data_delete,
r0_data_delete]
resp = self.client.post(term_res_url, data=json.dumps(term_res_data), content_type='application/json')
- self.failUnlessEqual(status.HTTP_204_NO_CONTENT, resp.status_code)
+ self.assertEqual(status.HTTP_204_NO_CONTENT, resp.status_code)
class HealthCheckViewTest(unittest.TestCase):