From 516a1039e2f572f63710e6c115664d435df86532 Mon Sep 17 00:00:00 2001 From: Todd Date: Mon, 17 Dec 2018 10:39:54 -0800 Subject: [PATCH] Fix assertion that should be on comment instead of article (#302) --- api/Conduit.postman_collection.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Conduit.postman_collection.json b/api/Conduit.postman_collection.json index f6821c308..82e3b3eb6 100644 --- a/api/Conduit.postman_collection.json +++ b/api/Conduit.postman_collection.json @@ -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');",