Skip to content

Commit

Permalink
Fix tests typo
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook committed Aug 14, 2018
1 parent 5e6667c commit 9bb5875
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test-cells/src/widget.spec.ts
Expand Up @@ -451,8 +451,9 @@ describe('cells/widget', () => {
await CodeCell.execute(widget, session);
const executionCount = widget.model.executionCount;
expect(executionCount).to.not.equal(originalCount);
expect('timing.execute_reply_started').to.be.ok();
expect('timing.execute_reply_sent').to.be.ok();
expect(widget.model.metadata.get('timing.execute_reply_started')).to
.exist;
expect(widget.model.metadata.get('timing.execute_reply_sent')).to.exist;
});
});
});
Expand Down

0 comments on commit 9bb5875

Please sign in to comment.