Skip to content

Commit 98f18bc

Browse files
author
Ace Nassri
authored
chore(functions/v2): fix failing region tag check (GoogleCloudPlatform#2638)
* chore(functions/v2): fix failing region tag check * Fix another test
1 parent fa0fb90 commit 98f18bc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

functions/v2/cloudEventLogging/test/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const pkg = require('../package.json');
2323
// Importing our target file
2424
require('../index.js');
2525

26-
describe('structured logging: functions cloudevent', () => {
26+
describe('functions_structured_logging_event', () => {
2727
let projectId;
2828

2929
before(async () => {

functions/v2/http-logging/test/index.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const {getFunction} = require('@google-cloud/functions-framework/testing');
2222
// Importing our target file
2323
require('../index.js');
2424

25-
describe('structured logging: functions http', () => {
25+
describe('functions_structured_logging', () => {
2626
let mockReq;
2727
let mockRes;
2828
let projectId;
@@ -52,7 +52,7 @@ describe('structured logging: functions http', () => {
5252
process.stdout.write.restore();
5353
});
5454

55-
it('structuredLogging: should correctly print logs', async () => {
55+
it('structuredLogging functions http: should correctly print logs', async () => {
5656
const structuredLogging = getFunction('structuredLogging');
5757

5858
// Call our function with dummy request and response objects

0 commit comments

Comments
 (0)