While skimming through code that still needs to be tested in the prediction service, I noticed this line that prevented the file from being completely covered by tests. The reason was that the condition was never false since the methods=['GET', 'POST'] parameter prevents any other request than a POST request from reaching this LOC.
CLA
[X] I have signed the CLA; if other committers are in the commit history, they have signed the CLA as well
While skimming through code that still needs to be tested in the prediction service, I noticed this line that prevented the file from being completely covered by tests. The reason was that the condition was never false since the
methods=['GET', 'POST']
parameter prevents any other request than aPOST
request from reaching this LOC.CLA