diff --git a/src/glance.js b/src/glance.js index c869aee..adb3981 100644 --- a/src/glance.js +++ b/src/glance.js @@ -13,7 +13,7 @@ * the License for the specific language governing permissions and limitations * 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. diff --git a/src/keystone.js b/src/keystone.js index 029e871..cc5603a 100644 --- a/src/keystone.js +++ b/src/keystone.js @@ -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. diff --git a/src/util/abstract_service.js b/src/util/abstractService.js similarity index 100% rename from src/util/abstract_service.js rename to src/util/abstractService.js diff --git a/test/unit/util/abstract_serviceTest.js b/test/unit/util/abstractServiceTest.js similarity index 99% rename from test/unit/util/abstract_serviceTest.js rename to test/unit/util/abstractServiceTest.js index 60b9bab..ef3b93b 100644 --- a/test/unit/util/abstract_serviceTest.js +++ b/test/unit/util/abstractServiceTest.js @@ -14,7 +14,7 @@ * 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 fetchMock from "fetch-mock"; // Might as well use service