Skip to content

Commit

Permalink
Error in script. Fix #8
Browse files Browse the repository at this point in the history
  • Loading branch information
vdespa committed Jan 11, 2021
1 parent 8d3ff8e commit 2fd0e48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/assertions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The assertion can look like: ::

pm.test("Should be subscriber or customer", function () {
var jsonData = pm.response.json();
pm.expect(.TargetType).to.be.oneOf(["Subscriber", "Customer"]);
pm.expect(jsonData.ACL[0].TargetType).to.be.oneOf(["Subscriber", "Customer"]);
});

where:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = u''
# The full version, including alpha/beta/rc tags
release = u'Version 1.6.7 - January 2021'
release = u'Version 1.6.8 - January 2021'


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 2fd0e48

Please sign in to comment.