style(docs-infra): remove unnecessary call to console.log() (#25020)

PR Close #25020
This commit is contained in:
Pete Bacon Darwin 2018-07-22 07:23:24 +01:00 committed by Igor Minar
parent a3cf61b7cf
commit 6a4d66d432
1 changed files with 0 additions and 1 deletions

View File

@ -115,7 +115,6 @@ describe('ApiListComponent', () => {
component.filteredSections.subscribe(filtered => {
filtered = filtered.filter(s => s.items);
console.log(filtered);
expect(filtered.length).toBe(1, 'sections');
expect(filtered[0].name).toBe(section, 'section name');
const items = filtered[0].items!;