Skip to content

Commit f224d05

Browse files
committed
fix lint
1 parent 01331fd commit f224d05

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/logging-bunyan/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ LoggingBunyan.prototype.formatEntry_ = function(record) {
173173
// If the record contains a httpRequest property, provide it on the entry
174174
// metadata. This allows Stackdriver to use request log formatting.
175175
// https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#HttpRequest
176-
// Note that the httpRequest field must properly validate as a HttpRequest
176+
// Note that the httpRequest field must properly validate as a HttpRequest
177177
// proto message, or the log entry would be rejected by the API. We do no
178178
// validation here.
179179
if (record.httpRequest) {

packages/logging-bunyan/test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ describe('logging-bunyan', function() {
219219
});
220220
assert.deepStrictEqual(record, RECORD);
221221
done();
222-
}
222+
};
223223

224224
loggingBunyan.formatEntry_(recordWithRequest);
225225
});

0 commit comments

Comments
 (0)