diff --git a/apps/remix-ide-e2e/src/commands/checkAnnotations.ts b/apps/remix-ide-e2e/src/commands/checkAnnotations.ts index c6e6fad337..7e74e66515 100644 --- a/apps/remix-ide-e2e/src/commands/checkAnnotations.ts +++ b/apps/remix-ide-e2e/src/commands/checkAnnotations.ts @@ -3,7 +3,7 @@ import {NightwatchBrowser} from 'nightwatch' class checkAnnotations extends EventEmitter { command(this: NightwatchBrowser, type: string, line: number): NightwatchBrowser { - this.api.assert.containsText(`.glyph-margin-widgets .${type} + div`, line.toString()).perform(() => this.emit('complete')) + this.api.assert.containsText(`.glyph-margin-widgets .${type}`, line.toString()).perform(() => this.emit('complete')) return this } }