[Clocks/Timers] renaming of Abstract class

renaming AbstractStartTimerAction to AbstractTime
This commit is contained in:
DJ
2017-01-14 16:41:54 -06:00
parent d94e8b10d8
commit 7fc66e2de8
4 changed files with 14 additions and 14 deletions

View File

@@ -21,8 +21,8 @@
*****************************************************************************/
define(
["../../src/actions/AbstractStartTimerAction"],
function (AbstractStartTimerAction) {
["../../src/actions/AbstractTimerAction"],
function (AbstractTimerAction) {
describe("A timer's start/restart action", function () {
var mockNow,
@@ -54,7 +54,7 @@ define(
testModel = {};
action = new AbstractStartTimerAction(mockNow, {
action = new AbstractTimerAction(mockNow, {
domainObject: mockDomainObject
});
});