build: fix formatting issue in host_binding_spec file

This commit is contained in:
Matias Niemelä 2018-10-26 14:33:04 -07:00
parent 19fcfc3d00
commit d50d400231
1 changed files with 2 additions and 2 deletions

View File

@ -92,10 +92,10 @@ describe('host', () => {
it('should support host bindings on nodes with providers', () => { it('should support host bindings on nodes with providers', () => {
class ServiceOne { class ServiceOne {
value = 'one' value = 'one';
} }
class ServiceTwo { class ServiceTwo {
value = 'two' value = 'two';
} }
class CompWithProviders { class CompWithProviders {