Fix expected response code when posting checks in Jenkinsfile

The response code returned on success was 200, but the job described
in the Jenkinsfile expected 201. Now the job correctly expects 200.

Change-Id: I7f22484d98f399fa8dbebec1bdc73926bf8e4040
diff --git a/Jenkinsfile b/Jenkinsfile
index b0d70de..ffe249c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -102,7 +102,7 @@
         def json = check.createCheckPayload()
         httpRequest(httpMode: 'POST', authentication: Globals.gerritCredentialsId,
             contentType: 'APPLICATION_JSON', requestBody: json,
-            validResponseCodes: '201', url: gerritPostUrl)
+            validResponseCodes: '200', url: gerritPostUrl)
         check.printCheckSummary()
     } catch(Exception e) {
         echo "ERROR> Failed to post check results to Gerrit: ${e}"