(self, id, json_str)
| 129 | return resp.json() |
| 130 | |
| 131 | def postFitting(self, id, json_str): |
| 132 | # @todo: new fitting ID can be recovered from resp.data, |
| 133 | char = self.getSsoCharacter(id) |
| 134 | resp = super().postFitting(char, json_str) |
| 135 | return resp |
| 136 | |
| 137 | def delFitting(self, id, fittingID): |
| 138 | char = self.getSsoCharacter(id) |
no test coverage detected