highlight the custom test result timestamp in milliseconds (#19702)

Co-authored-by: carterlin <carterlin@micron.com>
This commit is contained in:
Carter 2025-03-18 10:09:39 +08:00 committed by GitHub
parent 7e8c94c7b8
commit e332786de6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,7 +126,7 @@ Once you have your Test Case created you can write your results to it. You can u
{ {
"result": "<result message>", "result": "<result message>",
"testCaseStatus": "<Success or Failed or Aborted>", "testCaseStatus": "<Success or Failed or Aborted>",
"timestamp": <Unix timestamp>, "timestamp": <Unix timestamp in milliseconds>,
"testResultValue": [ "testResultValue": [
{ {
"value": "<value>" "value": "<value>"
@ -143,7 +143,7 @@ curl --location --request PUT 'http://localhost:8585/api/v1/dataQuality/testCase
--data-raw '{ --data-raw '{
"result": "found 1 values expected n", "result": "found 1 values expected n",
"testCaseStatus": "Success", "testCaseStatus": "Success",
"timestamp": 1662129151, "timestamp": 1662129151000,
"testResultValue": [{ "testResultValue": [{
"value": "10" "value": "10"
}] }]