Skip to content

Commit

Permalink
Updated depreciated commands to use RETURN Keywords (kubeflow#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyxrmdavidson committed Jan 27, 2024
1 parent 22df0a4 commit d6f4300
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/robot/MRkeywords.resource
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ I create a RegisteredModel having
${result} Upsert Registered Model ${data}
Log to console ${result}
END
[return] ${result}
RETURN ${result}


I create a RegisteredModel
Expand All @@ -34,7 +34,7 @@ I create a RegisteredModel
${result} Upsert Registered Model ${payload}
Log to console ${result}
END
[return] ${result}
RETURN ${result}


I create a child ModelVersion having
Expand All @@ -49,7 +49,7 @@ I create a child ModelVersion having
${result} Upsert Model Version ${data} ${registeredModelID}
Log to console ${result}
END
[return] ${result}
RETURN ${result}


I create a child ModelVersion
Expand All @@ -63,7 +63,7 @@ I create a child ModelVersion
${result} Upsert Model Version ${payload} ${registeredModelID}
Log to console ${result}
END
[return] ${result}
RETURN ${result}


I create a child ModelArtifact having
Expand All @@ -79,7 +79,7 @@ I create a child ModelArtifact having
${result} Upsert Model Artifact ${data} ${modelversionId}
Log to console ${result}
END
[return] ${result}
RETURN ${result}


I create a child ModelArtifact
Expand All @@ -92,7 +92,7 @@ I create a child ModelArtifact
${result} Upsert Model Artifact ${payload} ${modelversionId}
Log to console ${result}
END
[return] ${result}
RETURN ${result}


I get RegisteredModelByID
Expand All @@ -105,7 +105,7 @@ I get RegisteredModelByID
Log to console ${MODE}
Fail Not Implemented
END
[return] ${result}
RETURN ${result}


I get ModelVersionByID
Expand All @@ -118,7 +118,7 @@ I get ModelVersionByID
Log to console ${MODE}
Fail Not Implemented
END
[return] ${result}
RETURN ${result}


I get ModelArtifactByID
Expand All @@ -131,4 +131,4 @@ I get ModelArtifactByID
Log to console ${MODE}
Fail Not Implemented
END
[return] ${result}
RETURN ${result}

0 comments on commit d6f4300

Please sign in to comment.