[Build] Update mct-include, mct-representation specs

...to reflect changes in TemplateLinker API allowing
templates to be explicitly included.
This commit is contained in:
Victor Woeltjen
2016-01-29 11:27:08 -08:00
parent 38e703a121
commit 507f2391ff
2 changed files with 6 additions and 6 deletions

View File

@ -91,12 +91,12 @@ define(
mockScope.key = 'abc';
fireWatch('key', mockScope.key);
expect(mockChangeTemplate)
.toHaveBeenCalledWith(testUrls.abc);
.toHaveBeenCalledWith(testTemplates[0]);
mockScope.key = 'xyz';
fireWatch('key', mockScope.key);
expect(mockChangeTemplate)
.toHaveBeenCalledWith(testUrls.xyz);
.toHaveBeenCalledWith(testTemplates[1]);
});
});