Skip to content

Commit

Permalink
chore: remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mwear committed Sep 10, 2020
1 parent 8b4a99d commit f4b0e46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,8 @@ describe('CollectorTraceExporter - node with proto over http', () => {
callback(mockResError);
setTimeout(() => {
const response: any = spyLoggerError.args[0][0];
console.log(response);
assert.strictEqual(response, 'code: 400');

assert.strictEqual(response, 'code: 400');
assert.strictEqual(responseSpy.args[0][0], 1);
done();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,8 @@ describe('CollectorTraceExporter - node with json over http', () => {
callback(mockResError);
setTimeout(() => {
const response: any = spyLoggerError.args[0][0];
console.log(response);
assert.strictEqual(response, 'code: 400');

assert.strictEqual(response, 'code: 400');
assert.strictEqual(responseSpy.args[0][0], 1);
done();
});
Expand Down

0 comments on commit f4b0e46

Please sign in to comment.