Navigation Menu

Skip to content

Commit

Permalink
Fix assertion description in Postman collection
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Nov 3, 2018
1 parent 7da1769 commit a2aa7eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/Conduit.postman_collection.json
Expand Up @@ -1554,7 +1554,7 @@
"tests['Article has \"favorited\" property'] = article.hasOwnProperty('favorited');", "tests['Article has \"favorited\" property'] = article.hasOwnProperty('favorited');",
"tests['Article has \"favoritesCount\" property'] = article.hasOwnProperty('favoritesCount');", "tests['Article has \"favoritesCount\" property'] = article.hasOwnProperty('favoritesCount');",
"tests['favoritesCount is an integer'] = Number.isInteger(article.favoritesCount);", "tests['favoritesCount is an integer'] = Number.isInteger(article.favoritesCount);",
"tests[\"Article's \\\"favorited\\\" property is true\"] = article.favorited === false;", "tests[\"Article's \\\"favorited\\\" property is false\"] = article.favorited === false;",
"" ""
] ]
} }
Expand Down

0 comments on commit a2aa7eb

Please sign in to comment.