Renamed abstract_service to abstractService

Mostly because abstract_serviceTest looks weird.

Change-Id: Ia27b0e0cc70b8e4280f52f40eb78b466e358aa54
This commit is contained in:
Michael Krotscheck 2016-09-16 07:09:18 -07:00
parent c8dfb08c50
commit 525d5897c7
No known key found for this signature in database
GPG Key ID: 20E618D878DE38AB
4 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
* the License for the specific language governing permissions and limitations * the License for the specific language governing permissions and limitations
* under the License. * under the License.
*/ */
import AbstractService from './util/abstract_service'; import AbstractService from './util/abstractService';
/** /**
* A list of all supported versions. Please keep this array sorted by most recent. * A list of all supported versions. Please keep this array sorted by most recent.

View File

@ -1,4 +1,4 @@
import AbstractService from './util/abstract_service'; import AbstractService from './util/abstractService';
/** /**
* A list of all supported versions. Please keep this array sorted by most recent. * A list of all supported versions. Please keep this array sorted by most recent.

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
import AbstractService from "../../../src/util/abstract_service"; import AbstractService from "../../../src/util/abstractService";
import * as mockData from "../helpers/data/versions"; import * as mockData from "../helpers/data/versions";
import fetchMock from "fetch-mock"; // Might as well use service import fetchMock from "fetch-mock"; // Might as well use service