Fix linter and existing unit tests.

This commit is contained in:
kialam
2019-01-07 17:17:22 -05:00
parent 517ef8a2c9
commit 395e30509b
3 changed files with 26 additions and 20 deletions

View File

@@ -70,7 +70,7 @@ class APIClient {
return this.http.get(endpoint);
}
getInstanceGroups (){
getInstanceGroups () {
return this.http.get(API_INSTANCE_GROUPS);
}
@@ -82,7 +82,6 @@ class APIClient {
}
return false;
}
}
export default APIClient;