-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add overload that takes a double as the estimate value for an issue.Issue Refactor the code that sets the estimate to allow both int and double to be passed in. Added test for the double estimate Update package versions to later versions. * Add ConfigureAwait(false) in 2 places that were previously missed.
- Loading branch information
1 parent
57b4387
commit d51d3ea
Showing
6 changed files
with
61 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"Request": { | ||
"Path": { | ||
"Matchers": [ | ||
{ | ||
"Name": "ExactMatcher", | ||
"Pattern": "/p1/repositories/1/issues/2/estimate" | ||
} | ||
] | ||
}, | ||
"Methods": [ | ||
"put" | ||
], | ||
"Body": { | ||
"Matcher": { | ||
"Name": "ExactMatcher", | ||
"Pattern": "{\"estimate\":1.5}" | ||
} | ||
} | ||
}, | ||
"Response": { | ||
"StatusCode": 200, | ||
"BodyAsJson": { "estimate": 1.5 }, | ||
"Headers": { | ||
"Content-Type": "application/json" | ||
} | ||
} | ||
} |