Commit 55ee19c0 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Update test_unitary.py

parent 3caa09b8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1321,17 +1321,17 @@ def test_rest_get_service(context_service_rest : RestServer): # pylint: disable=
    reply = do_rest_request('/context/{:s}/service/{:s}'.format(context_uuid, service_uuid))
    validate_service(reply)

def test_rest_get_slice_ids(context_slice_rest : RestServer): # pylint: disable=redefined-outer-name
def test_rest_get_slice_ids(context_service_rest : RestServer): # pylint: disable=redefined-outer-name
    context_uuid = urllib.parse.quote(DEFAULT_CONTEXT_UUID)
    reply = do_rest_request('/context/{:s}/slice_ids'.format(context_uuid))
    #validate_slice_ids(reply)

def test_rest_get_slices(context_slice_rest : RestServer): # pylint: disable=redefined-outer-name
def test_rest_get_slices(context_service_rest : RestServer): # pylint: disable=redefined-outer-name
    context_uuid = urllib.parse.quote(DEFAULT_CONTEXT_UUID)
    reply = do_rest_request('/context/{:s}/slices'.format(context_uuid))
    #validate_slices(reply)

#def test_rest_get_slice(context_slice_rest : RestServer): # pylint: disable=redefined-outer-name
#def test_rest_get_slice(context_service_rest : RestServer): # pylint: disable=redefined-outer-name
#    context_uuid = urllib.parse.quote(DEFAULT_CONTEXT_UUID)
#    slice_uuid = urllib.parse.quote(SLICE_R1_R2_UUID, safe='')
#    reply = do_rest_request('/context/{:s}/slice/{:s}'.format(context_uuid, slice_uuid))