fix: fix clang errors
This commit is contained in:
parent
9d90128463
commit
01fb8e6635
|
@ -78,8 +78,8 @@ export class TestBed {
|
|||
* @return {Promise<ViewProxy>}
|
||||
*/
|
||||
createView(component: Type,
|
||||
{context = null,
|
||||
html = null}: {context?: any, html?: string} = {}): Promise<ViewProxy> {
|
||||
{context = null, html = null}: {context?: any,
|
||||
html?: string} = {}): Promise<ViewProxy> {
|
||||
if (isBlank(component) && isBlank(context)) {
|
||||
throw new BaseException('You must specified at least a component or a context');
|
||||
}
|
||||
|
|
|
@ -8,8 +8,7 @@ export function iterableChangesAsString({collection = CONST_EXPR([]), previous =
|
|||
"removals: " + removals.join(', ') + "\n";
|
||||
}
|
||||
|
||||
export function kvChangesAsString({map, previous, additions, changes, removals}:
|
||||
{
|
||||
export function kvChangesAsString({map, previous, additions, changes, removals}: {
|
||||
map?: List<any>,
|
||||
previous?: List<any>,
|
||||
additions?: List<any>,
|
||||
|
|
Loading…
Reference in New Issue