Merge branch 'remove-diff-comments-spec-logging' into 'master'

Remove logging to console in diff_comments_store_spec

## What does this MR do?

Remove `console.log` from `diff_comments_store_spec.js.es6`.

See merge request !7306
This commit is contained in:
Fatih Acet 2016-11-05 23:10:45 +00:00
commit c392b0cc24
1 changed files with 0 additions and 1 deletions

View File

@ -92,7 +92,6 @@
it('is unresolved with 2 notes', () => {
const discussion = CommentsStore.state['a'];
createDiscussion(2, false);
console.log(discussion.isResolved());
expect(discussion.isResolved()).toBe(false);
});