Commit 0d2307f6 authored by lopezaguilar's avatar lopezaguilar
Browse files

Revolse coding style

parent 0d2393f4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -19,7 +19,8 @@ ${vehicle_expectation_file}= vehicle-temporal-representation-020-01-expectati
020_01_01 Retrieve the temporal evolution of an entity
    [Documentation]    Check that you can retrieve the temporal evolution of an entity
    [Tags]    te-retrieve    5_7_3
    ${response}=    Retrieve Temporal Representation Of Entity    ${temporal_entity_representation_id}
    ${response}=    Retrieve Temporal Representation Of Entity
    ...    temporal_entity_representation_id=${temporal_entity_representation_id}
    Check Response Status Code    200    ${response.status_code}
    Check Response Body Containing EntityTemporal element
    ...    ${vehicle_expectation_file}
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ ${vehicle_expectation_file}= vehicle-temporal-representation-020-02-expectati
    [Documentation]    Check that you can retrieve the temporal evolution of an entity using a context
    [Tags]    te-retrieve    5_7_3
    ${response}=    Retrieve Temporal Representation Of Entity
    ...    ${temporal_entity_representation_id}
    ...    temporal_entity_representation_id=${temporal_entity_representation_id}
    ...    context=${ngsild_test_suite_context}
    Check Response Status Code    200    ${response.status_code}
    Check Response Body Containing EntityTemporal element
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ ${vehicle_expectation_file}= vehicle-temporal-representation-020-03-expectati
    [Tags]    te-retrieve    5_7_3
    @{temporal_attributes_to_be_retrieved}=    Create List    fuelLevel
    ${response}=    Retrieve Temporal Representation Of Entity
    ...    ${temporal_entity_representation_id}
    ...    temporal_entity_representation_id=${temporal_entity_representation_id}
    ...    attrs=${temporal_attributes_to_be_retrieved}
    ...    context=${ngsild_test_suite_context}
    Check Response Status Code    200    ${response.status_code}
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ Retrieve the temporal evolution of an entity matching the given NGSI-LD temporal
    [Documentation]    Check that you can retrieve the temporal evolution of an entity matching the given NGSI-LD temporal query
    [Arguments]    ${timerel}    ${timeAt}    ${endTimeAt}    ${vehicle_expectation_file}
    ${response}=    Retrieve Temporal Representation Of Entity
    ...    ${temporal_entity_representation_id}
    ...    temporal_entity_representation_id=${temporal_entity_representation_id}
    ...    timerel=${timerel}
    ...    timeAt=${timeAt}
    ...    endTimeAt=${endTimeAt}
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ Retrieve the temporal evolution of the last N instances of entity attributes
    [Documentation]    Check that you can retrieve the temporal evolution of the last N instances of entity attributes
    [Arguments]    ${lastN}    ${vehicle_expectation_file}
    ${response}=    Retrieve Temporal Representation Of Entity
    ...    ${temporal_entity_representation_id}
    ...    temporal_entity_representation_id=${temporal_entity_representation_id}
    ...    lastN=${lastN}
    ...    context=${ngsild_test_suite_context}
    Check Response Status Code    200    ${response.status_code}
Loading