macdude357
macdude357
I can take a look at fixing this.
In looking at this I also found that the update request might return an HTTP 200 but the body would be a message that the API rate limit has been...
I can't take a shot at this one. By "validate" do you mean prompt the user to acknowledge that the account number in the config is the desired one?
The way I'm thinking about implementing this is to have the user add a property to src/test/resources/config.properties named "aws.targetAccount". In looking at how I would insert the logic to validate...
So my understanding is that you want the user to indicate what account he is targeting via an env var. The code should then validate that the credentials that are...
Assuming that Aggregate is returning some type of token that is being sent in subsequent requests, then briefcase could store that token in a map using a hash of the...
@lognaturel I'm willing to give this one a try. I took a look at the code but don't know how to reproduce it. Is there a similar test I can...
After looking at the code, I'm not sure this is a good test. The code that generates the placeholders (${0} and ${1}) looks like this: `String s = "${" +...
I see. I thought that the spacing around ../first_name was the issue but it's the spacing between the tags that needs to be maintained. Thanks for clarifying.
I found that putting a non-breaking space between the output elements results in the desired behavior: `"Full name: \u00A0` The result is that ${0} and ${1} have a nbsp between...