Skip to content

Commit

Permalink
add fix missed in c25cd8f
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdunnjpl committed Jul 24, 2024
1 parent ad9251d commit 08eb8f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/postman/postman_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -2033,7 +2033,7 @@
"pm.test(\"C4438466 Status code is 200\", () => {pm.response.to.have.status(200)});",
"const content = pm.response.json();",
"pm.test(\"C4438466 Correct hits returned\", () => {pm.expect(content.summary.hits).to.eql(1)});",
"pm.test(\"C4438466 Correct data returned\", () => {pm.expect(content.data[0].id).to.eql(\"urn:nasa:pds:mars2020.spice:spice_kernels::3.0\")});"
"pm.test(\"C4438466 Correct data returned\", () => {pm.expect(content.data[0].id).to.eql(\"urn:nasa:pds:mars2020.spice::3.0\")});"
],
"type": "text/javascript",
"packages": {}
Expand All @@ -2044,13 +2044,14 @@
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/products/urn:nasa:pds:mars2020.spice:spice_kernels:mk_m2020/member-of",
"raw": "{{baseUrl}}/products/urn:nasa:pds:mars2020.spice:spice_kernels:mk_m2020/member-of/member-of",
"host": [
"{{baseUrl}}"
],
"path": [
"products",
"urn:nasa:pds:mars2020.spice:spice_kernels:mk_m2020",
"member-of",
"member-of"
]
}
Expand Down

0 comments on commit 08eb8f6

Please sign in to comment.