build(bazel): ran format (#24279)

PR Close #24279
This commit is contained in:
Greg Magolan 2018-06-04 15:11:40 -07:00 committed by Victor Berchet
parent 678fd32406
commit d814eaad95
2 changed files with 6 additions and 3 deletions

View File

@ -48,7 +48,8 @@ class BadTemplateUrl {
it('should run async tests with ResourceLoaders', async(() => {
const resourceLoader = new ResourceLoaderImpl();
resourceLoader.get('/base/angular/packages/platform-browser/test/static_assets/test.html')
resourceLoader
.get('/base/angular/packages/platform-browser/test/static_assets/test.html')
.then(() => { actuallyDone = true; });
}),
10000); // Long timeout here because this test makes an actual ResourceLoader.

View File

@ -103,8 +103,10 @@ class CompUsingModuleDirectiveAndPipe {
class SomeLibModule {
}
@Component(
{selector: 'comp', templateUrl: '/base/angular/packages/platform-browser/test/static_assets/test.html'})
@Component({
selector: 'comp',
templateUrl: '/base/angular/packages/platform-browser/test/static_assets/test.html'
})
class CompWithUrlTemplate {
}