From 9d7a533a068037883eafbf104e481ad204a41a2e Mon Sep 17 00:00:00 2001 From: Marc Dougherty Date: Fri, 10 Mar 2023 09:27:25 -0800 Subject: [PATCH] fix: add closing bracket in functions_http_system_test (#3075) * add closing bracket in functions_http_system_test Without this closing bracket, the tag creates an invalid sample. b/271558999 * fix lint --------- Co-authored-by: Karl Weinmeister <11586922+kweinmeister@users.noreply.github.com> --- .../helloworld/helloworldHttp/test/sample.system.http.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/helloworld/helloworldHttp/test/sample.system.http.test.js b/functions/helloworld/helloworldHttp/test/sample.system.http.test.js index ac1243f2e6..0c2713120c 100644 --- a/functions/helloworld/helloworldHttp/test/sample.system.http.test.js +++ b/functions/helloworld/helloworldHttp/test/sample.system.http.test.js @@ -58,4 +58,6 @@ describe('system tests', () => { }); assert.strictEqual(response.data, 'Hello World!'); }); + // [START functions_http_system_test] }); +// [END functions_http_system_test]