-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ticket/28817 fix api tests for new features #82
Ticket/28817 fix api tests for new features #82
Conversation
nemoDreamer
commented
Mar 24, 2015
- cherry-picked 2 improvements from Ticket/28441 hide template projects by default #79, to allow for less duplication later on.
- added version checks for Per-Project Customization parameter
- wrapped tests in version checks
f4a5909
to
7a26d76
Compare
"version 5.4.4 or higher, server is %s" % (self.server_caps.version,)) | ||
else: | ||
params["project"] = project_entity | ||
params = self._add_project_param(params, project_entity) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@manneohrstrom, I'd been tasked w/ fixing this, and only saw much later that you'd fixed the project
aspect of this...
So this is the conflict resolution, I hope you don't mind I kept "mine", since I'd already cherry-picked my ensure_...
changes over from #79...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No worries at all - this was just a quick fix to get the tests working on older servers. Looks like you have done a much more holistic pass, trying to clean things up properly (which is totally awesome!). So please ignore/discard any of my changes in favour of your proper changes. This was just a quick fix to make sure we can release the API with all tests passing.
7a26d76
to
14e283e
Compare
14e283e
to
7963a06
Compare
…s_for_new_features Ticket/28817 fix api tests for new features
Awesome !! |