Revert "feat(Compiler): case sensitive html parser"

This reverts commit 86aeb8be0a.
This commit is contained in:
vsavkin
2015-11-16 14:37:00 -08:00
parent 0611239a0e
commit 4e1d9c93df
14 changed files with 669 additions and 1673 deletions

View File

@ -380,7 +380,7 @@ export function main() {
run(rootComp, [dir], 1)
.then((data) => {
expect(data[0][2])
.toEqual(['someVar', 'someValue', 'someEmptyVar', '$implicit']);
.toEqual(['someEmptyVar', '$implicit', 'someVar', 'someValue']);
async.done();
});
}));