Commit c8545038 authored by kzangeli's avatar kzangeli
Browse files

fix: import the DateTime library in 029_10 and 038_05

Both tests call Get Current Date / Add Time To Date (Robot's DateTime library)
to build a future expiresAt, but neither imported `Library DateTime`, so they
failed at the first call with "No keyword with name 'Get Current Date' found".
Add the import to both. 029_10_01 and 038_05_01 now pass.
parent 9d78e4a2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
*** Settings ***
Documentation       Check that one can update a subscription: If only expiresAt is included and refers to a DateTime in the future, then status shall be updated to "active", if and only if the previous value of status was "expired"

Library             DateTime

Resource            ${EXECDIR}/resources/ApiUtils/Common.resource
Resource            ${EXECDIR}/resources/ApiUtils/ContextInformationSubscription.resource
Resource            ${EXECDIR}/resources/AssertionUtils.resource
+2 −0
Original line number Diff line number Diff line
*** Settings ***
Documentation       Check that one can create a context source registration subscription with an expiresAt member and when it is due the status of the subscription changes to "expired"

Library             DateTime

Resource            ${EXECDIR}/resources/ApiUtils/Common.resource
Resource            ${EXECDIR}/resources/ApiUtils/ContextSourceRegistrationSubscription.resource
Resource            ${EXECDIR}/resources/AssertionUtils.resource