[Timeline] Remove namespacing from specs

This commit is contained in:
Victor Woeltjen
2015-10-23 14:06:55 -07:00
parent 26db524f0e
commit fffe07e7e6
12 changed files with 42 additions and 42 deletions

View File

@@ -27,7 +27,7 @@ define(
);
testModel = {
type: "warp.activity",
type: "activity",
resources: {
abc: 100,
xyz: 42
@@ -45,7 +45,7 @@ define(
it("is applicable to timelines", function () {
expect(GraphCapability.appliesTo({
type: "warp.timeline"
type: "timeline"
})).toBeTruthy();
});
@@ -82,7 +82,7 @@ define(
it("provides a battery graph for timelines with capacity", function () {
var mockCallback = jasmine.createSpy('callback');
testModel.capacity = 1000;
testModel.type = "warp.timeline";
testModel.type = "timeline";
mockDomainObject.useCapability.andReturn(asPromise([
{ key: "power", start: 0, end: 15 }
]));
@@ -95,4 +95,4 @@ define(
});
}
);
);