[Clocks/Timers] Remove namespacing from specs

WTD-1239
This commit is contained in:
Victor Woeltjen 2015-10-23 13:44:39 -07:00
parent 83f135e48c
commit 307047d3ac

View File

@ -59,18 +59,18 @@ define(
});
it("applies only to timers without a target time", function () {
testModel.type = 'warp.timer';
testModel.type = 'timer';
testModel.timestamp = 12000;
expect(StartTimerAction.appliesTo(testContext)).toBeFalsy();
testModel.type = 'warp.timer';
testModel.type = 'timer';
testModel.timestamp = undefined;
expect(StartTimerAction.appliesTo(testContext)).toBeTruthy();
testModel.type = 'warp.clock';
testModel.type = 'clock';
testModel.timestamp = 12000;
expect(StartTimerAction.appliesTo(testContext)).toBeFalsy();
});
});
}
);
);