Skip to content

Commit cce6b58

Browse files
authored
Update README.md
Fixed typos.
1 parent 29fee7c commit cce6b58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,14 +150,14 @@ utils.test.positive(pm, null, 204);
150150

151151
A positive test that checks for the `200 OK` HTTP status code passed in the HTTP response and implements additional check.
152152
```JavaScript
153-
utils.test.positive(pm, null, 204, function() {
153+
utils.test.positive(pm, null, 200, function() {
154154
console.log("Add custom validation checks here.");
155155
});
156156
```
157157

158158
A positive test that checks for the `200 OK` HTTP status code passed in the HTTP response and implements additional check and error handling.
159159
```JavaScript
160-
utils.test.positive(pm, null, 204, function() {
160+
utils.test.positive(pm, null, 200, function() {
161161
console.log("Add custom validation checks here.");
162162
}, function() {
163163
console.log("This code will be executed if an error occurs in code above or default test logic.");

0 commit comments

Comments
 (0)