Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Angi-Kinas <[email protected]>
  • Loading branch information
fgravin and Angi-Kinas authored Dec 20, 2023
1 parent 1928187 commit c9d9849
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ describe('OrganisationsComponent', () => {
fixture.detectChanges()
expect(orgResultComponent.componentInstance.hits).toEqual(2)
})
it('should ignore special caharacter without space and display 1 match for "l\'Ingénierie"', () => {
it('should ignore special character without space and display 1 match for "l\'Ingénierie"', () => {
component.filterBy$.next("l'Ingénierie")
fixture.detectChanges()
expect(orgResultComponent.componentInstance.hits).toEqual(1)
})
it('should ignore special caharacter with space and display 1 match for "ARS / Agence"', () => {
it('should ignore special character with space and display 1 match for "ARS / Agence"', () => {
component.filterBy$.next('ARS / Agence')
fixture.detectChanges()
expect(orgResultComponent.componentInstance.hits).toEqual(1)
Expand Down

0 comments on commit c9d9849

Please sign in to comment.