Skip to content

Commit

Permalink
Fixing contract errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Graham committed May 17, 2016
1 parent 781b452 commit b244d01
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.idea
.idea
target
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
],
"request" : {
"method" : "GET",
"path" : "/kv/pair/${contract.parameters.key}"
"path" : "/kv/pair/${contract.parameter.key}"
},
"response" : {
"status" : "${contract.parameters.expectedStatus}"
"status" : "${contract.parameter.expectedStatus}"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
"content-type" : "application/json"
},
"body": {
"key": "${contract.parameters.first}",
"value": "${contract.parameters.last}"
"key": "${contract.parameter.first}",
"value": "${contract.parameter.last}"
}
},
"response" : {
"status" : 201,
"body" : {
"key": "${contract.parameters.first}",
"value": "${contract.parameters.last}"
"key": "${contract.parameter.first}",
"value": "${contract.parameter.last}"
}
}
}
1 change: 0 additions & 1 deletion target/git-contract-source
Submodule git-contract-source deleted from b5159d

0 comments on commit b244d01

Please sign in to comment.