[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

@@ -50,13 +50,13 @@ define(
});
it("provides three handles for activities", function () {
testType = "warp.activity";
testType = "activity";
expect(factory.handles(mockDomainObject).length)
.toEqual(3);
});
it("provides two handles for timelines", function () {
testType = "warp.timeline";
testType = "timeline";
expect(factory.handles(mockDomainObject).length)
.toEqual(2);
});