Skip to content

Commit 3eba92e

Browse files
committed
Fix postman tests
1 parent e28f32a commit 3eba92e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/api.postman_collection.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,15 +1027,15 @@
10271027
"",
10281028
"",
10291029
"pm.test(\"Check that first entry of array includes column templates\", () => {",
1030-
" pm.expect(res[0].ColumnTemplates).to.exist;",
1030+
" pm.expect(res[0].columns).to.exist;",
10311031
"})",
10321032
"",
10331033
"pm.test(\"Check that column template is not null\", () => {",
1034-
" pm.expect(res[0].ColumnTemplates).to.not.be.null;",
1034+
" pm.expect(res[0].columns).to.not.be.null;",
10351035
"})",
10361036
"",
10371037
"pm.test(\"Check that column template is an array\", () => {",
1038-
" pm.expect(res[0].ColumnTemplates).to.be.an('array');",
1038+
" pm.expect(res[0].columns).to.be.an('array');",
10391039
"})"
10401040
],
10411041
"type": "text/javascript",

0 commit comments

Comments
 (0)