[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

@@ -45,16 +45,16 @@ define(
it("applies to subsystem modes", function () {
expect(CostCapability.appliesTo({
type: "warp.mode"
type: "mode"
})).toBeTruthy();
expect(CostCapability.appliesTo({
type: "warp.activity"
type: "activity"
})).toBeFalsy();
expect(CostCapability.appliesTo({
type: "warp.other"
type: "other"
})).toBeFalsy();
});
});
}
);
);