Skip to content

Commit

Permalink
Fix assertion that should be on comment instead of article (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
toddwest authored and anishkny committed Dec 17, 2018
1 parent e1be1ab commit 516a103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/Conduit.postman_collection.json
Expand Up @@ -1614,7 +1614,7 @@
"",
"tests['Comment has \"body\" property'] = comment.hasOwnProperty('body');",
"tests['Comment has \"createdAt\" property'] = comment.hasOwnProperty('createdAt');",
"tests['\"createdAt\" property is an ISO 8601 timestamp'] = /^\\d{4,}-[01]\\d-[0-3]\\dT[0-2]\\d:[0-5]\\d:[0-5]\\d.\\d+(?:[+-][0-2]\\d:[0-5]\\d|Z)$/.test(article.createdAt);",
"tests['\"createdAt\" property is an ISO 8601 timestamp'] = /^\\d{4,}-[01]\\d-[0-3]\\dT[0-2]\\d:[0-5]\\d:[0-5]\\d.\\d+(?:[+-][0-2]\\d:[0-5]\\d|Z)$/.test(comment.createdAt);",
"tests['Comment has \"updatedAt\" property'] = comment.hasOwnProperty('updatedAt');",
"tests['\"updatedAt\" property is an ISO 8601 timestamp'] = /^\\d{4,}-[01]\\d-[0-3]\\dT[0-2]\\d:[0-5]\\d:[0-5]\\d.\\d+(?:[+-][0-2]\\d:[0-5]\\d|Z)$/.test(comment.updatedAt);",
"tests['Comment has \"author\" property'] = comment.hasOwnProperty('author');",
Expand Down

0 comments on commit 516a103

Please sign in to comment.