Skip to content

Commit

Permalink
Merge branch 'main' into fix/8716-source-sorting-option
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro authored Oct 3, 2023
2 parents 8e2e531 + 207055d commit ec14b9c
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe('GoogleTagManagerService', () => {
}
))

it('should be able to add script element and throw error because cannot connect with GTM', inject(
it('should be able to add script element and throw error because cannot connect with GTM', inject(
[GoogleTagManagerService],
(service: GoogleTagManagerService) => {
service.addGtmToDom().subscribe(
Expand All @@ -60,8 +60,7 @@ describe('GoogleTagManagerService', () => {
},
(error) => {
expect(error).toEqual({
name: 'GTM - Error',
message: 'Unable to add GTM',
name: 'GTM - Error'
})
}
)
Expand All @@ -79,7 +78,6 @@ describe('GoogleTagManagerService', () => {
(error) => {
expect(error).toEqual({
name: 'GTM - Error',
message: 'Unable to add GTM',
})
}
)
Expand Down

0 comments on commit ec14b9c

Please sign in to comment.