Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #35 from stephendonner/fix-API-URL
Browse files Browse the repository at this point in the history
Fix Service Book API URL
  • Loading branch information
stephendonner authored Sep 14, 2017
2 parents 62df1e5 + 00f31ca commit 3d5e2e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/mozilla/fxtest/ServiceBook.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import groovy.json.JsonSlurperClassic;
// Servicebook iterator to get operational tests for a given project
Object getProjectTests(String name) {
def projectName = name.toLowerCase();
def resp = httpRequest "https://servicebook.stage.mozaws.net/api/project";
def resp = httpRequest "https://servicebook-api.stage.mozaws.net/api/project";
def jsonSlurper = new JsonSlurperClassic();
def projects = jsonSlurper.parseText(resp.content);

Expand Down

0 comments on commit 3d5e2e8

Please sign in to comment.